hdy
7 天以前 b9df2fc5c64a1d989991655a9e42e4d1f2ec4075
提交 | 用户 | 时间
fb3b3e 1 package com.billion.main.bs.domain;
2
3 import lombok.Data;
4 import org.apache.commons.lang3.builder.ToStringBuilder;
5 import org.apache.commons.lang3.builder.ToStringStyle;
6 import com.billion.common.annotation.Excel;
7 import com.billion.main.common.BaseEntity;
8
9 /**
10  * 配方配置对象 bs_formula_info
11  * 
12  * @author Billion
13  * @date 2024-11-26
14  */
15 @Data
16 public class BsFormulaInfo extends BaseEntity
17 {
18
19     /** 产品编码 */
20     @Excel(name = "产品编码")
21     private String productCode;
22
23     /** 产品名称 */
24     @Excel(name = "产品名称")
25     private String productName;
26
27     /** 配方编码 */
28     @Excel(name = "配方编码")
29     private String formulaCode;
30
31     /** 配方名称 */
32     @Excel(name = "配方名称")
33     private String formulaName;
34
35     /** 状态 */
36     @Excel(name = "状态", readConverterExp = "1=启用,0=未启用")
37     private String status;
38
39     @Excel(name = "备注")
40     private String remark;
41
42
43
44 }