140 lines
3.3 KiB
Java
140 lines
3.3 KiB
Java
package com.rzyc.model;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import java.util.Date;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import java.io.Serializable;
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
/**
|
|
* <p>
|
|
* 岗位职责
|
|
* </p>
|
|
*
|
|
* @author
|
|
* @since 2022-10-09
|
|
*/
|
|
@TableName("ent_post_duty")
|
|
@ApiModel(value="EntPostDuty对象", description="岗位职责")
|
|
public class EntPostDuty implements Serializable {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
@ApiModelProperty(value = "岗位职责id")
|
|
@TableId("duty_id")
|
|
private String dutyId;
|
|
|
|
@ApiModelProperty(value = "岗位id")
|
|
@TableField("post_id")
|
|
private String postId;
|
|
|
|
@ApiModelProperty(value = "职责内容")
|
|
@TableField("duty_item")
|
|
private String dutyItem;
|
|
|
|
@ApiModelProperty(value = "排序")
|
|
@TableField("sort_id")
|
|
private Integer sortId;
|
|
|
|
@ApiModelProperty(value = "企业id")
|
|
@TableField("enterprise_id")
|
|
private String enterpriseId;
|
|
|
|
@ApiModelProperty(value = "创建时间")
|
|
@TableField("create_time")
|
|
private Date createTime;
|
|
|
|
@ApiModelProperty(value = "创建人")
|
|
@TableField("create_by")
|
|
private String createBy;
|
|
|
|
@ApiModelProperty(value = "修改时间")
|
|
@TableField("modify_time")
|
|
private Date modifyTime;
|
|
|
|
@ApiModelProperty(value = "修改人")
|
|
@TableField("modify_by")
|
|
private String modifyBy;
|
|
|
|
public String getDutyId() {
|
|
return dutyId;
|
|
}
|
|
|
|
public void setDutyId(String dutyId) {
|
|
this.dutyId = dutyId;
|
|
}
|
|
public String getPostId() {
|
|
return postId;
|
|
}
|
|
|
|
public void setPostId(String postId) {
|
|
this.postId = postId;
|
|
}
|
|
public String getDutyItem() {
|
|
return dutyItem;
|
|
}
|
|
|
|
public void setDutyItem(String dutyItem) {
|
|
this.dutyItem = dutyItem;
|
|
}
|
|
public Integer getSortId() {
|
|
return sortId;
|
|
}
|
|
|
|
public void setSortId(Integer sortId) {
|
|
this.sortId = sortId;
|
|
}
|
|
public String getEnterpriseId() {
|
|
return enterpriseId;
|
|
}
|
|
|
|
public void setEnterpriseId(String enterpriseId) {
|
|
this.enterpriseId = enterpriseId;
|
|
}
|
|
public Date getCreateTime() {
|
|
return createTime;
|
|
}
|
|
|
|
public void setCreateTime(Date createTime) {
|
|
this.createTime = createTime;
|
|
}
|
|
public String getCreateBy() {
|
|
return createBy;
|
|
}
|
|
|
|
public void setCreateBy(String createBy) {
|
|
this.createBy = createBy;
|
|
}
|
|
public Date getModifyTime() {
|
|
return modifyTime;
|
|
}
|
|
|
|
public void setModifyTime(Date modifyTime) {
|
|
this.modifyTime = modifyTime;
|
|
}
|
|
public String getModifyBy() {
|
|
return modifyBy;
|
|
}
|
|
|
|
public void setModifyBy(String modifyBy) {
|
|
this.modifyBy = modifyBy;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "EntPostDuty{" +
|
|
"dutyId=" + dutyId +
|
|
", postId=" + postId +
|
|
", dutyItem=" + dutyItem +
|
|
", sortId=" + sortId +
|
|
", enterpriseId=" + enterpriseId +
|
|
", createTime=" + createTime +
|
|
", createBy=" + createBy +
|
|
", modifyTime=" + modifyTime +
|
|
", modifyBy=" + modifyBy +
|
|
"}";
|
|
}
|
|
}
|