|
@@ -1,16 +1,14 @@
|
|
|
package com.jjt.dye.domain;
|
|
package com.jjt.dye.domain;
|
|
|
|
|
|
|
|
-import java.util.List;
|
|
|
|
|
-import java.util.Date;
|
|
|
|
|
-import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
|
|
+import com.jjt.common.annotation.Excel;
|
|
|
|
|
+import com.jjt.common.core.domain.BaseEntity;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.Data;
|
|
import lombok.Data;
|
|
|
-import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
|
|
-import org.apache.commons.lang3.builder.ToStringStyle;
|
|
|
|
|
-import com.jjt.common.annotation.Excel;
|
|
|
|
|
-import com.jjt.common.core.domain.BaseEntity;
|
|
|
|
|
|
|
+
|
|
|
|
|
+import java.util.Date;
|
|
|
|
|
+import java.util.List;
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 染整线设备类型管理对象 DYE_TYPE
|
|
* 染整线设备类型管理对象 DYE_TYPE
|
|
@@ -20,46 +18,65 @@ import com.jjt.common.core.domain.BaseEntity;
|
|
|
*/
|
|
*/
|
|
|
@ApiModel(value = "DyeType", description = "染整线设备类型管理")
|
|
@ApiModel(value = "DyeType", description = "染整线设备类型管理")
|
|
|
@Data
|
|
@Data
|
|
|
-public class DyeType extends BaseEntity{
|
|
|
|
|
|
|
+public class DyeType extends BaseEntity {
|
|
|
private static final long serialVersionUID = 1L;
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
- /** ID */
|
|
|
|
|
|
|
+ /**
|
|
|
|
|
+ * ID
|
|
|
|
|
+ */
|
|
|
@ApiModelProperty("ID")
|
|
@ApiModelProperty("ID")
|
|
|
@TableId
|
|
@TableId
|
|
|
private Long typeId;
|
|
private Long typeId;
|
|
|
|
|
|
|
|
- /** 类型名称 */
|
|
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 类型名称
|
|
|
|
|
+ */
|
|
|
@ApiModelProperty("类型名称")
|
|
@ApiModelProperty("类型名称")
|
|
|
@Excel(name = "类型名称")
|
|
@Excel(name = "类型名称")
|
|
|
private String typeName;
|
|
private String typeName;
|
|
|
|
|
|
|
|
- /** 车间 */
|
|
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 车间
|
|
|
|
|
+ */
|
|
|
@ApiModelProperty("车间")
|
|
@ApiModelProperty("车间")
|
|
|
@Excel(name = "车间")
|
|
@Excel(name = "车间")
|
|
|
private String wsName;
|
|
private String wsName;
|
|
|
|
|
|
|
|
- /** 设备IOT通配符 */
|
|
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 设备IOT通配符
|
|
|
|
|
+ */
|
|
|
@ApiModelProperty("设备IOT通配符")
|
|
@ApiModelProperty("设备IOT通配符")
|
|
|
@Excel(name = "设备IOT通配符")
|
|
@Excel(name = "设备IOT通配符")
|
|
|
private String typeMatch;
|
|
private String typeMatch;
|
|
|
|
|
|
|
|
- /** 创建人 */
|
|
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 创建人
|
|
|
|
|
+ */
|
|
|
@ApiModelProperty("创建人")
|
|
@ApiModelProperty("创建人")
|
|
|
private String createdBy;
|
|
private String createdBy;
|
|
|
|
|
|
|
|
- /** 创建时间 */
|
|
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 创建时间
|
|
|
|
|
+ */
|
|
|
@ApiModelProperty("创建时间")
|
|
@ApiModelProperty("创建时间")
|
|
|
private Date createdTime;
|
|
private Date createdTime;
|
|
|
|
|
|
|
|
- /** 更新人 */
|
|
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 更新人
|
|
|
|
|
+ */
|
|
|
@ApiModelProperty("更新人")
|
|
@ApiModelProperty("更新人")
|
|
|
private String updatedBy;
|
|
private String updatedBy;
|
|
|
|
|
|
|
|
- /** 更新时间 */
|
|
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 更新时间
|
|
|
|
|
+ */
|
|
|
@ApiModelProperty("更新时间")
|
|
@ApiModelProperty("更新时间")
|
|
|
private Date updatedTime;
|
|
private Date updatedTime;
|
|
|
|
|
|
|
|
- /** 染整线设备类型参数管理信息 */
|
|
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 染整线设备类型参数管理信息
|
|
|
|
|
+ */
|
|
|
|
|
+ @ApiModelProperty("染整线设备类型参数管理信息")
|
|
|
private List<DyeTypePara> dyeTypeParaList;
|
|
private List<DyeTypePara> dyeTypeParaList;
|
|
|
|
|
|
|
|
}
|
|
}
|