package cc.mrbird.febs.mall.entity;
|
|
import cc.mrbird.febs.common.entity.BaseEntity;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
/**
|
* 团长商品库存表
|
*/
|
@Data
|
@TableName("mall_leader_stock")
|
public class MallLeaderStock extends BaseEntity {
|
|
//团长ID
|
private Long teamLeaderId;
|
|
//商品ID
|
private Long goodsId;
|
|
//商品名称
|
private String goodsName;
|
|
//库存
|
private Integer goodsStock;
|
|
//销售数量
|
private Integer goodsVolume;
|
|
}
|