吴健
2024-11-27 fb3b3e41804abeeb4a54d9df3030bc3cdb75c245
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
package com.billion.main.bs.domain;
 
import lombok.Data;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.billion.common.annotation.Excel;
import com.billion.main.common.BaseEntity;
 
/**
 * 配方配置对象 bs_formula_info
 * 
 * @author Billion
 * @date 2024-11-26
 */
@Data
public class BsFormulaInfo extends BaseEntity
{
 
    /** 产品编码 */
    @Excel(name = "产品编码")
    private String productCode;
 
    /** 产品名称 */
    @Excel(name = "产品名称")
    private String productName;
 
    /** 配方编码 */
    @Excel(name = "配方编码")
    private String formulaCode;
 
    /** 配方名称 */
    @Excel(name = "配方名称")
    private String formulaName;
 
    /** 状态 */
    @Excel(name = "状态", readConverterExp = "1=启用,0=未启用")
    private String status;
 
    @Excel(name = "备注")
    private String remark;
 
 
 
}