ustcyc
2025-01-07 5fd51c437819f1c9d027a936db4ba2ee7cd2e053
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
package com.zhitan.costmanagement.domain;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.zhitan.common.core.domain.BaseEntity;
import lombok.Data;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.zhitan.common.annotation.Excel;
 
/**
 * 成本策略对象 cost_price_tactics
 *
 * @author ZhiTan
 * @date 2024-11-08
 */
@TableName("cost_price_tactics")
@Data
public class CostPriceTactics extends BaseEntity {
    private static final long serialVersionUID = 1L;
 
    /** $column.columnComment */
    private String id;
 
    /** 是否阶梯价格0否1是 */
    @Excel(name = "是否阶梯价格0否1是")
    private String type;
 
    /** 策略编码 */
    @Excel(name = "策略编码")
    private String tacticsNumber;
 
    /** 策略名称 */
    @Excel(name = "策略名称")
    private String tacticsName;
 
    /** 能源品种 */
    @Excel(name = "能源品种")
    private Integer energyType;
 
 
}