新火炬后端单体项目初始化代码
Houjie
昨天 563a74081df215497e5acd5de54e74445c4bd18b
src/main/java/org/jeecg/modules/base/model/FactoryModel.java
@@ -4,30 +4,16 @@
@Data
public class FactoryModel {
    // getter和setter方法
    private String value;  // 产线ID
    private String text;   // 产线名称
    private String type;   // 产线类型
    public FactoryModel() {
    }
    public FactoryModel() {}
    public FactoryModel(String value, String text) {
    public FactoryModel(String value, String text, String type) {
        this.value = value;
        this.text = text;
    }
    // getter和setter方法
    public String getValue() {
        return value;
    }
    public void setValue(String value) {
        this.value = value;
    }
    public String getText() {
        return text;
    }
    public void setText(String text) {
        this.text = text;
        this.type = type;
    }
}