📄 sysphotoinfo.java
字号:
package com.chinahr.pojo;
import java.util.Date;
import java.util.HashSet;
import java.util.Set;
/**
* SysPhotoInfo generated by MyEclipse Persistence Tools
*/
public class SysPhotoInfo implements java.io.Serializable {
// Fields
private Integer photoId;
private String photoName;
private String photoDesc;
private Date createDate;
private Date createTime;
private Integer photoState;
private Set userInds = new HashSet(0);
// Constructors
/** default constructor */
public SysPhotoInfo() {
}
/** minimal constructor */
public SysPhotoInfo(String photoName, String photoDesc, Date createDate,
Date createTime, Integer photoState) {
this.photoName = photoName;
this.photoDesc = photoDesc;
this.createDate = createDate;
this.createTime = createTime;
this.photoState = photoState;
}
/** full constructor */
public SysPhotoInfo(String photoName, String photoDesc, Date createDate,
Date createTime, Integer photoState, Set userInds) {
this.photoName = photoName;
this.photoDesc = photoDesc;
this.createDate = createDate;
this.createTime = createTime;
this.photoState = photoState;
this.userInds = userInds;
}
// Property accessors
public Integer getPhotoId() {
return this.photoId;
}
public void setPhotoId(Integer photoId) {
this.photoId = photoId;
}
public String getPhotoName() {
return this.photoName;
}
public void setPhotoName(String photoName) {
this.photoName = photoName;
}
public String getPhotoDesc() {
return this.photoDesc;
}
public void setPhotoDesc(String photoDesc) {
this.photoDesc = photoDesc;
}
public Date getCreateDate() {
return this.createDate;
}
public void setCreateDate(Date createDate) {
this.createDate = createDate;
}
public Date getCreateTime() {
return this.createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
public Integer getPhotoState() {
return this.photoState;
}
public void setPhotoState(Integer photoState) {
this.photoState = photoState;
}
public Set getUserInds() {
return this.userInds;
}
public void setUserInds(Set userInds) {
this.userInds = userInds;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -