|
|
|
|
@ -6,6 +6,8 @@ import io.github.linpeilie.annotations.AutoMapper;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
import org.dromara.common.excel.annotation.ExcelDictFormat;
|
|
|
|
|
import org.dromara.common.excel.convert.ExcelDictConvert;
|
|
|
|
|
import org.dromara.common.translation.annotation.Translation;
|
|
|
|
|
import org.dromara.common.translation.constant.TransConstant;
|
|
|
|
|
import org.dromara.system.domain.SysDept;
|
|
|
|
|
|
|
|
|
|
import java.io.Serial;
|
|
|
|
|
@ -74,8 +76,21 @@ public class SysDeptVo implements Serializable {
|
|
|
|
|
* 负责人
|
|
|
|
|
*/
|
|
|
|
|
@ExcelProperty(value = "负责人")
|
|
|
|
|
@Translation(type = TransConstant.USER_ID_TO_NICKNAME, mapper = "leader")
|
|
|
|
|
private String leaderName;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 分管副总ID
|
|
|
|
|
*/
|
|
|
|
|
private Long vicePresident;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 分管副总
|
|
|
|
|
*/
|
|
|
|
|
@ExcelProperty(value = "分管副总")
|
|
|
|
|
@Translation(type = TransConstant.USER_ID_TO_NICKNAME, mapper = "vicePresident")
|
|
|
|
|
private String vicePresidentName;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 联系电话
|
|
|
|
|
*/
|
|
|
|
|
|