Jenkins自动合并
commit
a2947478ca
@ -0,0 +1,60 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model;
|
||||
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @Reference:
|
||||
* @Author: joke.wang
|
||||
* @CreateDate: 2019\12\4 16:44
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
public class ProduceCtgyPictureModel {
|
||||
|
||||
private Long id;
|
||||
private String createUser;
|
||||
private String createDatetime;
|
||||
private String modifyUser;
|
||||
private String modifyDatetime;
|
||||
private String organizeCode;
|
||||
private Integer isValid;
|
||||
private Integer isDeleted;
|
||||
|
||||
@ApiParam("产品类型代码")
|
||||
private String produceCtgyCode;
|
||||
|
||||
@ApiParam("面位")
|
||||
private String sideLocation;
|
||||
|
||||
@ApiParam("文件id")
|
||||
private Long fileId;
|
||||
|
||||
@ApiParam("文件原名称")
|
||||
private String fileOriginName;
|
||||
@ApiParam("文件URL")
|
||||
private String fileUrl;
|
||||
@ApiParam("组名")
|
||||
private String groupName;
|
||||
|
||||
public ProduceCtgyPictureModel() {
|
||||
}
|
||||
|
||||
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;
|
||||
this.modifyUser = modifyUser;
|
||||
this.modifyDatetime = modifyDatetime;
|
||||
this.organizeCode = organizeCode;
|
||||
this.isValid = isValid;
|
||||
this.isDeleted = isDeleted;
|
||||
this.produceCtgyCode = produceCtgyCode;
|
||||
this.sideLocation = sideLocation;
|
||||
this.fileId = fileId;
|
||||
this.fileOriginName = fileOriginName;
|
||||
this.fileUrl = fileUrl;
|
||||
this.groupName = groupName;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue