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

com.gccloud.starter.common.module.post.vo.SysPostVO Maven / Gradle / Ivy

package com.gccloud.starter.common.module.post.vo;

import com.gccloud.starter.extend.field.vo.SysPostVOExtend;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;

import java.io.Serializable;

/**
 * @Author 萌级小菜鸟
 * @Date 2021年10月20日18:43:00
 * @Version 2.0.0
 */
@Data
public class SysPostVO extends SysPostVOExtend implements Serializable {
    private static final long serialVersionUID = 1L;
    @ApiModelProperty(notes = "主键")
    private String id;
    @ApiModelProperty(notes = "岗位名称")
    private String name;
    @ApiModelProperty(notes = "岗位编码")
    private String code;
    @ApiModelProperty(notes = "岗位类型")
    private String type;
    @ApiModelProperty(notes = "排序")
    private Integer orderNum;
    @ApiModelProperty(notes = "备注")
    private String remark;
    @ApiModelProperty(notes = "0为禁用,1为有效")
    private Integer status;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy