package com.ruoyi.dto; import com.ruoyi.staff.pojo.StaffOnJob; import lombok.Data; /** * @author :yys * @date : 2025/11/5 14:34 */ @Data public class WordDateDto extends StaffOnJob { // 合同日期相关 private String qyear; // 签订日期-年 private String qmoth; // 签订日期-月(注意原文档拼写:qmoth=month) private String qday; // 签订日期-日 private String syear = ""; // 合同开始年 private String smoth = ""; // 合同开始月 private String sday = ""; // 合同开始日 private String eyear = ""; // 合同结束年(仅A类型需要) private String emoth = ""; // 合同结束月(仅A类型需要) private String eday = ""; // 合同结束日(仅A类型需要) // 试用期相关 private String styear = ""; // 试用期开始年 private String stmoth = ""; // 试用期开始月 private String stday = ""; // 试用期开始日 private String seyear = ""; // 试用期结束年 private String semoth = ""; // 试用期结束月 private String seday = ""; // 试用期结束日 private String bsyear = ""; // 合同开始年 private String bsmoth = ""; // 合同开始月 private String bsday = ""; // 合同开始日 // 试用期相关 private String bstyear = ""; // 试用期开始年 private String bstmoth = ""; // 试用期开始月 private String bstday = ""; // 试用期开始日 private String bseyear = ""; // 试用期结束年 private String bsemoth = ""; // 试用期结束月 private String bseday = ""; // 试用期结束日 private String csyear = ""; // 合同开始年 private String csmoth = ""; // 合同开始月 private String csday = ""; // 合同开始日 }