新火炬后端单体项目初始化代码
cuilei
2 天以前 c71714508fbe3ace3543423c7700d7bbcca90056
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package org.jeecg.modules.base.model;
 
import lombok.Data;
 
@Data
public class FactoryModel {
    // getter和setter方法
    private String value;  // 产线ID
    private String text;   // 产线名称
 
    public FactoryModel() {
    }
 
    public FactoryModel(String value, String text) {
        this.value = value;
        this.text = text;
    }
}