All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.mingsoft.organization.entity.PostEntity Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy