151 lines
2.3 KiB
Plaintext
151 lines
2.3 KiB
Plaintext
|
|
package com.nationalelectric.greenH5.po;
|
||
|
|
|
||
|
|
import org.hibernate.validator.constraints.NotBlank;
|
||
|
|
|
||
|
|
import java.sql.Blob;
|
||
|
|
import java.util.Date;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* GreenImageInfo
|
||
|
|
* @author dell
|
||
|
|
*/
|
||
|
|
public class GreenImageInfo implements java.io.Serializable {
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 序列化
|
||
|
|
*/
|
||
|
|
private static final long serialVersionUID = 1L;
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
*主键ID
|
||
|
|
*/
|
||
|
|
|
||
|
|
private String id;
|
||
|
|
|
||
|
|
/**
|
||
|
|
*图片内容
|
||
|
|
*/
|
||
|
|
@NotBlank(message="不能为空")
|
||
|
|
private String imageContent;
|
||
|
|
private Blob imageContentBlob;
|
||
|
|
|
||
|
|
/**
|
||
|
|
*创建者
|
||
|
|
*/
|
||
|
|
@NotBlank(message="不能为空")
|
||
|
|
private String creator;
|
||
|
|
|
||
|
|
/**
|
||
|
|
*修改者
|
||
|
|
*/
|
||
|
|
@NotBlank(message="不能为空")
|
||
|
|
private String modifier;
|
||
|
|
|
||
|
|
/**
|
||
|
|
*创建时间
|
||
|
|
*/
|
||
|
|
@NotBlank(message="不能为空")
|
||
|
|
private Date gmtCreated;
|
||
|
|
|
||
|
|
/**
|
||
|
|
*修改时间
|
||
|
|
*/
|
||
|
|
@NotBlank(message="不能为空")
|
||
|
|
private Date gmtModified;
|
||
|
|
|
||
|
|
/**
|
||
|
|
*是否删除YN默认N
|
||
|
|
*/
|
||
|
|
@NotBlank(message="不能为空")
|
||
|
|
private String isDeleted;
|
||
|
|
|
||
|
|
private String imageName;
|
||
|
|
|
||
|
|
private String imageStatus;
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
public String getImageName() {
|
||
|
|
return imageName;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setImageName(String imageName) {
|
||
|
|
this.imageName = imageName;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getImageStatus() {
|
||
|
|
return imageStatus;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setImageStatus(String imageStatus) {
|
||
|
|
this.imageStatus = imageStatus;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getId() {
|
||
|
|
return id;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setId(String id) {
|
||
|
|
this.id = id;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getImageContent() {
|
||
|
|
return imageContent;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setImageContent(String imageContent) {
|
||
|
|
this.imageContent = imageContent;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getCreator() {
|
||
|
|
return creator;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setCreator(String creator) {
|
||
|
|
this.creator = creator;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getModifier() {
|
||
|
|
return modifier;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setModifier(String modifier) {
|
||
|
|
this.modifier = modifier;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Date getGmtCreated() {
|
||
|
|
return gmtCreated;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setGmtCreated(Date gmtCreated) {
|
||
|
|
this.gmtCreated = gmtCreated;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Date getGmtModified() {
|
||
|
|
return gmtModified;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setGmtModified(Date gmtModified) {
|
||
|
|
this.gmtModified = gmtModified;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getIsDeleted() {
|
||
|
|
return isDeleted;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setIsDeleted(String isDeleted) {
|
||
|
|
this.isDeleted = isDeleted;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Blob getImageContentBlob() {
|
||
|
|
return imageContentBlob;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setImageContentBlob(Blob imageContentBlob) {
|
||
|
|
this.imageContentBlob = imageContentBlob;
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|