| | |
| | | import java.util.List; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Getter; |
| | | import lombok.Setter; |
| | | |
| | |
| | | @Getter |
| | | @Setter |
| | | @TableName("scheme_applicable_staff") |
| | | @ApiModel(value = "SchemeApplicableStaff对象", description = "社保方案适用人员表") |
| | | @Schema(name = "SchemeApplicableStaff对象", description = "社保方案适用人员表") |
| | | public class SchemeApplicableStaff implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @ApiModelProperty("社保方案保险福利明细") |
| | | @Schema(description = "社保方案保险福利明细") |
| | | @TableField(exist = false) |
| | | private List<SchemeInsuranceDetail> schemeInsuranceDetailList; |
| | | |
| | | @ApiModelProperty("主键ID") |
| | | @Schema(description = "主键ID") |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Long id; |
| | | |
| | | @ApiModelProperty("标题") |
| | | @Schema(description = "标题") |
| | | private String title; |
| | | |
| | | @ApiModelProperty("部门ids,多个使用,隔开") |
| | | @Schema(description = "部门ids,多个使用,隔开") |
| | | private String deptIds; |
| | | |
| | | @ApiModelProperty("部门名称,多个使用,隔开") |
| | | @Schema(description = "部门名称,多个使用,隔开") |
| | | @TableField(exist = false) |
| | | private String deptNames; |
| | | |
| | | @ApiModelProperty("人员名称,多个使用,隔开") |
| | | @Schema(description = "人员名称,多个使用,隔开") |
| | | private String staffNames; |
| | | |
| | | @ApiModelProperty("人员id,多个使用,隔开") |
| | | @Schema(description = "人员id,多个使用,隔开") |
| | | private String staffIds; |
| | | |
| | | @ApiModelProperty("保险类型名称多个使用,隔开") |
| | | @Schema(description = "保险类型名称多个使用,隔开") |
| | | private String insuranceTypes; |
| | | |
| | | @ApiModelProperty("备注") |
| | | @Schema(description = "备注") |
| | | private String remark; |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty("创建人名称") |
| | | @Schema(description = "创建人名称") |
| | | private String createUserName; |
| | | |
| | | @ApiModelProperty("创建时间") |
| | | @Schema(description = "创建时间") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8", shape = JsonFormat.Shape.STRING) |
| | | private LocalDateTime createTime; |
| | | |
| | | @ApiModelProperty("更新时间") |
| | | @Schema(description = "更新时间") |
| | | @TableField(fill = FieldFill.INSERT_UPDATE) |
| | | private LocalDateTime updateTime; |
| | | |
| | | @ApiModelProperty("创建人") |
| | | @Schema(description = "创建人") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Integer createUser; |
| | | |
| | | @ApiModelProperty("更新人") |
| | | @Schema(description = "更新人") |
| | | @TableField(fill = FieldFill.INSERT_UPDATE) |
| | | private Integer updateUser; |
| | | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long deptId; |
| | | } |