zouyu
2025-12-15 e4d0ac2171bb181144c4cca91506780b269a5e02
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.ruoyi.personnel.dto;
 
import com.ruoyi.personnel.pojo.PersonTraining;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "PersonTrainingDto对象", description = "培训计划")
public class PersonTrainingDto extends PersonTraining {
 
    @ApiModelProperty("编制人姓名")
    private String compilerName;
 
    @ApiModelProperty("审核人姓名")
    private String reviewerName;
 
    @ApiModelProperty("批准人姓名")
    private String approverName;
 
    @ApiModelProperty("创建人姓名")
    private String createUserName;
}