| | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.safe.pojo.SafeTrainingDetails; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | import lombok.Getter; |
| | | import lombok.Setter; |
| | |
| | | @Data |
| | | public class SafeTrainingDetailsDto extends SafeTrainingDetails { |
| | | |
| | | @ApiModelProperty("培训人员编号") |
| | | @Schema(description = "培训人员编号") |
| | | private String userName; |
| | | |
| | | @ApiModelProperty("培训人员名称") |
| | | @Schema(description = "培训人员名称") |
| | | private String nickName; |
| | | |
| | | @ApiModelProperty("手机号码") |
| | | @Schema(description = "手机号码") |
| | | private String phonenumber; |
| | | |
| | | |