| | |
| | | import java.io.Serializable;
|
| | | import java.util.Date;
|
| | |
|
| | | import javax.persistence.Transient;
|
| | |
|
| | | import com.google.gson.annotations.Expose;
|
| | |
|
| | | import org.yeshi.utils.mybatis.Column;
|
| | | import org.yeshi.utils.mybatis.Table;
|
| | |
|
| | |
| | | private Date createTime;// 创建时间
|
| | | @Column(name = "an_updatetime")
|
| | | private Date updateTime;// 更新时间
|
| | |
|
| | | @Transient // 页面名称
|
| | | private String pageName; |
| | |
|
| | | public Long getId() {
|
| | | return id;
|
| | |
| | | this.updateTime = updateTime;
|
| | | }
|
| | |
|
| | | public String getPageName() {
|
| | | return pageName;
|
| | | }
|
| | |
|
| | | public void setPageName(String pageName) {
|
| | | this.pageName = pageName;
|
| | | }
|
| | |
|
| | | }
|