package com.panzhihua.service_community.entity; import java.util.Date; import java.io.Serializable; import lombok.Data; /** * 电动车商城-商家分类表(ComBatteryStoreClass)实体类 * * @author lyq * @since 2022-03-29 11:01:55 */ @Data public class ComBatteryStoreClass implements Serializable { private static final long serialVersionUID = -68469766294447305L; /** * 主键id */ private Long id; /** * 分类名称 */ private String name; /** * 商家id */ private Long storeId; /** * 状态(1.启用 2.禁用) */ private Integer status; /** * 是否删除(1.是 2.否) */ private Integer isDel; /** * 创建时间 */ private Date createAt; /** * 创建人id */ private Long createBy; /** * 更新时间 */ private Date updateAt; /** * 更新人id */ private Long updateBy; }