package com.panzhihua.service_community.entity;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
import java.io.Serializable;
|
|
import lombok.Data;
|
|
/**
|
* 电动车商城-商品表(ComBatteryCommodity)实体类
|
*
|
* @author lyq
|
* @since 2022-03-28 14:59:59
|
*/
|
@Data
|
public class ComBatteryCommodity implements Serializable {
|
private static final long serialVersionUID = 974240119661857683L;
|
/**
|
* 主键id
|
*/
|
private Long id;
|
/**
|
* 商品名称
|
*/
|
private String name;
|
/**
|
* 商品编号
|
*/
|
private String code;
|
/**
|
* 商品价格
|
*/
|
private BigDecimal price;
|
/**
|
* 商家id
|
*/
|
private Long storeId;
|
/**
|
* 状态(1.上架 2.下架)
|
*/
|
private Integer status;
|
/**
|
* 商品分类id
|
*/
|
private Long classId;
|
/**
|
* 商品简介
|
*/
|
private String introduce;
|
/**
|
* 邮费
|
*/
|
private BigDecimal postage;
|
/**
|
* 商品图片
|
*/
|
private String images;
|
/**
|
* 商品详情
|
*/
|
private String detail;
|
/**
|
* 是否删除(1.是 2.否)
|
*/
|
private Integer isDel;
|
/**
|
* 创建时间
|
*/
|
private Date createAt;
|
/**
|
* 创建人id
|
*/
|
private Long createBy;
|
/**
|
* 更新时间
|
*/
|
private Date updateAt;
|
/**
|
* 更新人id
|
*/
|
private Long updateBy;
|
|
/**
|
* 是否删除枚举(1.是 2.否)
|
*/
|
public interface IsDel{
|
int YES = 1;
|
int NO = 2;
|
}
|
}
|