新火炬后端单体项目初始化代码
zhangherong
3 天以前 afb71a0770acc36a6e062aecf2dfc1c92d2d80a7
src/main/java/org/jeecg/modules/base/model/FactoryModel.java
@@ -4,30 +4,15 @@
@Data
public class FactoryModel {
    // getter和setter方法
    private String value;  // 产线ID
    private String text;   // 产线名称
    public FactoryModel() {}
    public FactoryModel() {
    }
    public FactoryModel(String value, String text) {
        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;
    }
}