first commit
This commit is contained in:
@@ -0,0 +1,57 @@
|
||||
package com.peanut.modules.book.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 秒杀商品表
|
||||
*
|
||||
* @author yl
|
||||
* @email yl328572838@163.com
|
||||
* @date 2022-10-28 11:24:05
|
||||
*/
|
||||
@Data
|
||||
@TableName("seckill_prod_relation")
|
||||
public class SeckillProdRelationEntity implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@TableId
|
||||
private Integer id;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private String promotionId;
|
||||
/**
|
||||
* 场次id
|
||||
*/
|
||||
private Integer promotionSeckillId;
|
||||
/**
|
||||
* 商品id
|
||||
*/
|
||||
private Integer prodId;
|
||||
/**
|
||||
* 秒杀价格
|
||||
*/
|
||||
private BigDecimal seckillPrice;
|
||||
/**
|
||||
* 秒杀数量
|
||||
*/
|
||||
private String seckillCount;
|
||||
/**
|
||||
* 限制购买
|
||||
*/
|
||||
private String seckillLimit;
|
||||
/**
|
||||
* 权重
|
||||
*/
|
||||
private String seckillSort;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user