package org.jeecg.modules.base.model; import lombok.Data; @Data public class FactoryModel { // getter和setter方法 private String value; // 产线ID private String text; // 产线名称 private String type; // 产线类型 public FactoryModel() { } public FactoryModel(String value, String text, String type) { this.value = value; this.text = text; this.type = type; } }