|
|
|
@ -1,14 +1,16 @@
|
|
|
|
|
package cn.estsh.i3plus.pojo.mes.pcn.model;
|
|
|
|
|
package cn.estsh.i3plus.pojo.mes.model;
|
|
|
|
|
|
|
|
|
|
import io.swagger.annotations.ApiParam;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @Description:
|
|
|
|
|
* @Reference:
|
|
|
|
|
* @Author: joke.wang
|
|
|
|
|
* @CreateDate: 2019\12\4 17:10
|
|
|
|
|
* @CreateDate: 2019\12\4 16:44
|
|
|
|
|
* @Modify:
|
|
|
|
|
**/
|
|
|
|
|
@Data
|
|
|
|
|
public class ProduceCtgyPictureModel {
|
|
|
|
|
|
|
|
|
|
private Long id;
|
|
|
|
@ -21,7 +23,7 @@ public class ProduceCtgyPictureModel {
|
|
|
|
|
private Integer isDeleted;
|
|
|
|
|
|
|
|
|
|
@ApiParam("产品类型代码")
|
|
|
|
|
private String produceCategoryCode;
|
|
|
|
|
private String produceCtgyCode;
|
|
|
|
|
|
|
|
|
|
@ApiParam("面位")
|
|
|
|
|
private String sideLocation;
|
|
|
|
@ -29,8 +31,8 @@ public class ProduceCtgyPictureModel {
|
|
|
|
|
@ApiParam("文件id")
|
|
|
|
|
private Long fileId;
|
|
|
|
|
|
|
|
|
|
@ApiParam("文件名称")
|
|
|
|
|
private String fileName;
|
|
|
|
|
@ApiParam("文件原名称")
|
|
|
|
|
private String fileOriginName;
|
|
|
|
|
@ApiParam("文件URL")
|
|
|
|
|
private String fileUrl;
|
|
|
|
|
@ApiParam("组名")
|
|
|
|
@ -39,7 +41,7 @@ public class ProduceCtgyPictureModel {
|
|
|
|
|
public ProduceCtgyPictureModel() {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ProduceCtgyPictureModel(Long id, String createUser, String createDatetime, String modifyUser, String modifyDatetime, String organizeCode, Integer isValid, Integer isDeleted, String produceCategoryCode, String sideLocation, Long fileId, String fileName, String fileUrl, String groupName) {
|
|
|
|
|
public ProduceCtgyPictureModel(Long id, String createUser, String createDatetime, String modifyUser, String modifyDatetime, String organizeCode, Integer isValid, Integer isDeleted, String produceCtgyCode, String sideLocation, Long fileId, String fileOriginName, String fileUrl, String groupName) {
|
|
|
|
|
this.id = id;
|
|
|
|
|
this.createUser = createUser;
|
|
|
|
|
this.createDatetime = createDatetime;
|
|
|
|
@ -48,10 +50,10 @@ public class ProduceCtgyPictureModel {
|
|
|
|
|
this.organizeCode = organizeCode;
|
|
|
|
|
this.isValid = isValid;
|
|
|
|
|
this.isDeleted = isDeleted;
|
|
|
|
|
this.produceCategoryCode = produceCategoryCode;
|
|
|
|
|
this.produceCtgyCode = produceCtgyCode;
|
|
|
|
|
this.sideLocation = sideLocation;
|
|
|
|
|
this.fileId = fileId;
|
|
|
|
|
this.fileName = fileName;
|
|
|
|
|
this.fileOriginName = fileOriginName;
|
|
|
|
|
this.fileUrl = fileUrl;
|
|
|
|
|
this.groupName = groupName;
|
|
|
|
|
}
|