peng
10 天以前 b83b070dc8cc823c877aa3a2ade134272ec0641a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
package cn.lili.modules.lmk.domain.entity;
 
import cn.lili.modules.lmk.enums.general.ChangePriceAudioStatusEnum;
import cn.lili.mybatis.BaseEntity;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * 价格变动表
 *
 * @author peng
 * @since 2025-07-03
 */
@Data
@TableName("lmk_price_change")
public class PriceChange extends BaseEntity {
 
    private static final long serialVersionUID = 1L;
 
    @TableField("store_id")
    /** 店铺id */
    private String storeId;
 
    @TableField("goods_id")
    /** 商品id */
    private String goodsId;
 
    @TableField("sku_id")
    /** 最小销售单元id */
    private String skuId;
 
    @TableField("previous_price")
    /** 原价 */
    private BigDecimal previousPrice;
 
    @TableField("current_price")
    /** 现价 */
    private BigDecimal currentPrice;
 
    @TableField("previous_commission")
    /** 原抽成比例 */
    private BigDecimal previousCommission;
 
    @TableField("current_commission")
    /** 现在抽成比例 */
    private BigDecimal currentCommission;
 
    @TableField("operator_name")
    /** 操作人员姓名 */
    private String operatorName;
 
    @TableField("operator_id")
    /** 操作人员id */
    private String operatorId;
 
    @TableField("examine_status")
    /**
     * 审核状态
     *
     * @see  ChangePriceAudioStatusEnum
     * */
    private String examineStatus;
 
    @TableField("operator_type")
    /** 操作人员类型 */
    private String operatorType;
 
 
}