package org.ruoyi.system.domain.bo;
|
|
import io.github.linpeilie.annotations.AutoMapper;
|
import jakarta.validation.constraints.NotBlank;
|
import jakarta.validation.constraints.NotNull;
|
import jakarta.validation.constraints.Size;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import org.ruoyi.common.core.validate.AddGroup;
|
import org.ruoyi.common.core.validate.EditGroup;
|
import org.ruoyi.common.mybatis.core.domain.BaseEntity;
|
import org.ruoyi.system.domain.SysPost;
|
|
/**
|
* 岗位信息业务对象 sys_post
|
*
|
* @author Michelle.Chung
|
*/
|
|
@Data
|
@EqualsAndHashCode(callSuper = true)
|
@AutoMapper(target = SysPost.class, reverseConvertGenerate = false)
|
public class SysPostBo extends BaseEntity {
|
|
/**
|
* 岗位ID
|
*/
|
@NotNull(message = "岗位ID不能为空", groups = { EditGroup.class })
|
private Long postId;
|
|
/**
|
* 岗位编码
|
*/
|
@NotBlank(message = "岗位编码不能为空", groups = { AddGroup.class, EditGroup.class })
|
@Size(min = 0, max = 64, message = "岗位编码长度不能超过{max}个字符")
|
private String postCode;
|
|
/**
|
* 岗位名称
|
*/
|
@NotBlank(message = "岗位名称不能为空", groups = { AddGroup.class, EditGroup.class })
|
@Size(min = 0, max = 50, message = "岗位名称长度不能超过{max}个字符")
|
private String postName;
|
|
/**
|
* 显示顺序
|
*/
|
@NotNull(message = "显示顺序不能为空", groups = { AddGroup.class, EditGroup.class })
|
private Integer postSort;
|
|
/**
|
* 状态(0正常 1停用)
|
*/
|
private String status;
|
|
/**
|
* 备注
|
*/
|
private String remark;
|
|
|
}
|