wangrenhuang
2023-12-21 fe95614d9f8e8c07fb7b0c640c5f0bc5ede56b67
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.hz.his.dto;
 
import com.hz.his.dto.common.DCommonDto;
import lombok.Data;
 
/**
 * @author fwq
 * 导出员工Dto
 */
@Data
public class DEmployeeDto extends DCommonDto {
    private Integer isJob;
    private Integer isPerformanceEmp;
    private String roleUniqueStr;
 
}