package com.gkhy.safePlatform.account.entity.user;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
@TableName("sys_position")
|
public class PositionInfo implements Serializable {
|
|
private static final long serialVersionUID = -2166656702226959018L;
|
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
|
private String code;
|
|
private String name;
|
|
private Byte status;
|
|
private Date gmtCreate;
|
|
private Date gmtModified;
|
|
private String createBy;
|
|
private String editBy;
|
|
private Long createUid;
|
|
private Long editUid;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getCode() {
|
return code;
|
}
|
|
public void setCode(String code) {
|
this.code = code;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public Byte getStatus() {
|
return status;
|
}
|
|
public void setStatus(Byte status) {
|
this.status = status;
|
}
|
|
public Date getGmtCreate() {
|
return gmtCreate;
|
}
|
|
public void setGmtCreate(Date gmtCreate) {
|
this.gmtCreate = gmtCreate;
|
}
|
|
public Date getGmtModified() {
|
return gmtModified;
|
}
|
|
public void setGmtModified(Date gmtModified) {
|
this.gmtModified = gmtModified;
|
}
|
|
public String getCreateBy() {
|
return createBy;
|
}
|
|
public void setCreateBy(String createBy) {
|
this.createBy = createBy;
|
}
|
|
public String getEditBy() {
|
return editBy;
|
}
|
|
public void setEditBy(String editBy) {
|
this.editBy = editBy;
|
}
|
|
public Long getCreateUid() {
|
return createUid;
|
}
|
|
public void setCreateUid(Long createUid) {
|
this.createUid = createUid;
|
}
|
|
public Long getEditUid() {
|
return editUid;
|
}
|
|
public void setEditUid(Long editUid) {
|
this.editUid = editUid;
|
}
|
}
|