|
@@ -13,9 +13,13 @@
|
|
|
package vip.xiaonuo.modular.base.peoplelist.entity;
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.*;
|
|
|
+import com.fhs.core.trans.anno.Trans;
|
|
|
+import com.fhs.core.trans.constant.TransType;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.Getter;
|
|
|
import lombok.Setter;
|
|
|
+import vip.xiaonuo.dev.modular.file.entity.DevFile;
|
|
|
+
|
|
|
import java.math.BigDecimal;
|
|
|
import java.util.Date;
|
|
|
|
|
@@ -114,4 +118,9 @@ public class PeopleList {
|
|
|
/** 部门名称 */
|
|
|
@ApiModelProperty(value = "部门名称", position = 22)
|
|
|
private String departmentName;
|
|
|
+
|
|
|
+ /** 员工图片id */
|
|
|
+ @ApiModelProperty(value = "员工图片id", position = 23)
|
|
|
+ @Trans(type = TransType.SIMPLE, target = DevFile.class, fields = "thumbnail", alias = "img", ref = "imgUrl")
|
|
|
+ private String imgUrlId;
|
|
|
}
|