123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209 |
- package com.miniframe.model.ac;
- import com.miniframe.system.MiniserviceBaseModel;
- import java.io.Serializable;
- import java.util.Date;
- import javax.persistence.*;
- @Table(name = "ac_dy_ast")
- public class AcDyAst extends MiniserviceBaseModel implements Serializable {
- /**
- * 编号
- */
- @Id
- @Column(name = "ast_id")
- private Integer astId;
- /**
- * 类型
- */
- private String type;
- /**
- * 名
- */
- private String name;
- /**
- * 编码
- */
- private String code;
- /**
- * 用户编码
- */
- private String uid;
- /**
- * 描述
- */
- private String remark;
- /**
- * 创建时间
- */
- @Column(name = "create_time")
- private Date createTime;
- /**
- * 更新时间
- */
- @Column(name = "update_time")
- private Date updateTime;
- private static final long serialVersionUID = 1L;
- /**
- * 获取编号
- *
- * @return ast_id - 编号
- */
- public Integer getAstId() {
- return astId;
- }
- /**
- * 设置编号
- *
- * @param astId 编号
- */
- public void setAstId(Integer astId) {
- this.astId = astId;
- }
- /**
- * 获取类型
- *
- * @return type - 类型
- */
- public String getType() {
- return type;
- }
- /**
- * 设置类型
- *
- * @param type 类型
- */
- public void setType(String type) {
- this.type = type == null ? null : type.trim();
- }
- /**
- * 获取名
- *
- * @return name - 名
- */
- public String getName() {
- return name;
- }
- /**
- * 设置名
- *
- * @param name 名
- */
- public void setName(String name) {
- this.name = name == null ? null : name.trim();
- }
- /**
- * 获取编码
- *
- * @return code - 编码
- */
- public String getCode() {
- return code;
- }
- /**
- * 设置编码
- *
- * @param code 编码
- */
- public void setCode(String code) {
- this.code = code == null ? null : code.trim();
- }
- /**
- * 获取用户编码
- *
- * @return uid - 用户编码
- */
- public String getUid() {
- return uid;
- }
- /**
- * 设置用户编码
- *
- * @param uid 用户编码
- */
- public void setUid(String uid) {
- this.uid = uid == null ? null : uid.trim();
- }
- /**
- * 获取描述
- *
- * @return remark - 描述
- */
- public String getRemark() {
- return remark;
- }
- /**
- * 设置描述
- *
- * @param remark 描述
- */
- public void setRemark(String remark) {
- this.remark = remark == null ? null : remark.trim();
- }
- /**
- * 获取创建时间
- *
- * @return create_time - 创建时间
- */
- public Date getCreateTime() {
- return createTime;
- }
- /**
- * 设置创建时间
- *
- * @param createTime 创建时间
- */
- public void setCreateTime(Date createTime) {
- this.createTime = createTime;
- }
- /**
- * 获取更新时间
- *
- * @return update_time - 更新时间
- */
- public Date getUpdateTime() {
- return updateTime;
- }
- /**
- * 设置更新时间
- *
- * @param updateTime 更新时间
- */
- public void setUpdateTime(Date updateTime) {
- this.updateTime = updateTime;
- }
- }
|