新火炬后端单体项目初始化代码
Houjie
3 天以前 58f19f978b2e0794c4569d67ad79ee53e3541fcd
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;
    }
}