新火炬后端单体项目初始化代码
cuilei
18 小时以前 5f1edfec21b921ec885b40b0a86c7ffe4aa5a7de
src/main/java/org/jeecg/modules/base/model/FactoryModel.java
@@ -7,12 +7,13 @@
    // getter和setter方法
    private String value;  // 产线ID
    private String text;   // 产线名称
    private String type;   // 产线类型
    public FactoryModel() {
    }
    public FactoryModel(String value, String text) {
    public FactoryModel(String value, String text, String type) {
        this.value = value;
        this.text = text;
        this.type = type;
    }
}