zhuo
2025-02-24 e8e73529983bf656d8aa6627215045f56cc27103
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;
}