123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211 |
- package com.miniframe.model.es;
- import com.miniframe.system.MiniserviceBaseModel;
- import java.io.Serializable;
- import java.util.Date;
- import javax.persistence.*;
- @Table(name = "es_unit_sys")
- public class EsUnitSys extends MiniserviceBaseModel implements Serializable {
- /**
- * 系统单位编号
- */
- @Id
- @Column(name = "sut_id")
- private String sutId;
- /**
- * 系统单位中文名
- */
- @Column(name = "name_zh")
- private String nameZh;
- /**
- * 系统单位英文名
- */
- @Column(name = "name_en")
- private String nameEn;
- /**
- * 系统单位类型
- */
- private Integer type;
- /**
- * 用户编码
- */
- private String uid;
- /**
- * 创建时间
- */
- @Column(name = "create_time")
- private Date createTime;
- /**
- * 更新时间
- */
- @Column(name = "update_time")
- private Date updateTime;
- /**
- * 描述
- */
- private String remark;
- private static final long serialVersionUID = 1L;
- /**
- * 获取系统单位编号
- *
- * @return sut_id - 系统单位编号
- */
- public String getSutId() {
- return sutId;
- }
- /**
- * 设置系统单位编号
- *
- * @param sutId 系统单位编号
- */
- public void setSutId(String sutId) {
- this.sutId = sutId == null ? null : sutId.trim();
- }
- /**
- * 获取系统单位中文名
- *
- * @return name_zh - 系统单位中文名
- */
- public String getNameZh() {
- return nameZh;
- }
- /**
- * 设置系统单位中文名
- *
- * @param nameZh 系统单位中文名
- */
- public void setNameZh(String nameZh) {
- this.nameZh = nameZh == null ? null : nameZh.trim();
- }
- /**
- * 获取系统单位英文名
- *
- * @return name_en - 系统单位英文名
- */
- public String getNameEn() {
- return nameEn;
- }
- /**
- * 设置系统单位英文名
- *
- * @param nameEn 系统单位英文名
- */
- public void setNameEn(String nameEn) {
- this.nameEn = nameEn == null ? null : nameEn.trim();
- }
- /**
- * 获取系统单位类型
- *
- * @return type - 系统单位类型
- */
- public Integer getType() {
- return type;
- }
- /**
- * 设置系统单位类型
- *
- * @param type 系统单位类型
- */
- public void setType(Integer type) {
- this.type = type;
- }
- /**
- * 获取用户编码
- *
- * @return uid - 用户编码
- */
- public String getUid() {
- return uid;
- }
- /**
- * 设置用户编码
- *
- * @param uid 用户编码
- */
- public void setUid(String uid) {
- this.uid = uid == null ? null : uid.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;
- }
- /**
- * 获取描述
- *
- * @return remark - 描述
- */
- public String getRemark() {
- return remark;
- }
- /**
- * 设置描述
- *
- * @param remark 描述
- */
- public void setRemark(String remark) {
- this.remark = remark == null ? null : remark.trim();
- }
- }
|