maven
2025-11-11 cc0635fdc45d9b0e9396f76ed4074bdb1d81f9d3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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 = "";        // 合同开始日
}