net.mingsoft.organization.entity.PostEntity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ms-morganization Show documentation
Show all versions of ms-morganization Show documentation
ms-morganization tools Library
package net.mingsoft.organization.entity;
import com.alibaba.fastjson.annotation.JSONField;
import org.springframework.format.annotation.DateTimeFormat;
import com.fasterxml.jackson.annotation.JsonFormat;
import net.mingsoft.base.entity.BaseEntity;
import java.util.Date;
/**
* 岗位管理实体
* @author 铭飞开源团队
* 创建日期:2020-1-6 18:25:28
* 历史修订:
*/
public class PostEntity extends BaseEntity {
private static final long serialVersionUID = 1578306328716L;
/**
* 岗位名称
*/
private String postName;
/**
* 岗位编号
*/
private String postCode;
/**
* 岗位描述
*/
private String postDesc;
/**
* 设置岗位名称
*/
public void setPostName(String postName) {
this.postName = postName;
}
/**
* 获取岗位名称
*/
public String getPostName() {
return this.postName;
}
/**
* 设置岗位编号
*/
public void setPostCode(String postCode) {
this.postCode = postCode;
}
/**
* 获取岗位编号
*/
public String getPostCode() {
return this.postCode;
}
/**
* 设置岗位描述
*/
public void setPostDesc(String postDesc) {
this.postDesc = postDesc;
}
/**
* 获取岗位描述
*/
public String getPostDesc() {
return this.postDesc;
}
}