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