maven
23 小时以前 ce80b4856af879484f039c3176843e29978b436f
src/main/java/com/ruoyi/staff/pojo/StaffJoinLeaveRecord.java
@@ -2,6 +2,7 @@
import com.baomidou.mybatisplus.annotation.*;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.dto.DateQueryDto;
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@@ -9,6 +10,7 @@
import javax.validation.constraints.NotBlank;
import java.io.Serializable;
import java.math.BigDecimal;
import java.time.LocalDateTime;
import java.util.Date;
@@ -18,7 +20,7 @@
 */
@TableName(value = "staff_join_leave_record")
@Data
public class StaffJoinLeaveRecord implements Serializable {
public class StaffJoinLeaveRecord extends DateQueryDto implements Serializable {
    private static final long serialVersionUID = 1L;
    /**
@@ -33,6 +35,14 @@
    @NotBlank(message = "员工状态不能为空!!!!!!!!")
    @Excel(name = "状态",readConverterExp = "0=离职,1=入职")
    private Integer staffState;
    /**
     * 试用期(月)
     */
    @Excel(name = "试用期(月)")
    private Integer probationPeriod;
    /**
     * 员工编号
@@ -132,6 +142,53 @@
    @Excel(name = "合同结束日期", width = 30, dateFormat = "yyyy-MM-dd")
    private Date contractEndTime;
    /**
     * 开始试用日期
     */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "开始试用日期", width = 30, dateFormat = "yyyy-MM-dd")
    private Date trialStartDate;
    /**
     * 试用结束日期
     */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "试用结束日期", width = 30, dateFormat = "yyyy-MM-dd")
    private Date trialEndDate;
    /**
     * 签订时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "签订时间", width = 30, dateFormat = "yyyy-MM-dd")
    private Date signDate;
    /**
     * 工资报酬选择条款
     */
//    @Excel(name = "工资报酬选择条款")
    private String salarySelect;
    /**
     * 试用期工资
     */
    @Excel(name = "试用期工资")
    private BigDecimal proSalary;
    /**
     * 劳动合同期限选择
     */
//    @Excel(name = "劳动合同期限选择")
    private String dateSelect;
    /**
     * 备注(福利待遇)
     */
    @Excel(name = "备注(福利待遇)")
    private String remark;
    @ApiModelProperty(value = "创建时间")
    @TableField(fill = FieldFill.INSERT)
    private LocalDateTime createTime;