|
|
@@ -7,6 +7,8 @@ import org.dromara.common.excel.annotation.ExcelDictFormat;
|
|
|
import org.dromara.common.excel.convert.ExcelDictConvert;
|
|
|
import io.github.linpeilie.annotations.AutoMapper;
|
|
|
import lombok.Data;
|
|
|
+import org.dromara.common.translation.annotation.Translation;
|
|
|
+import org.dromara.common.translation.constant.TransConstant;
|
|
|
|
|
|
import java.io.Serial;
|
|
|
import java.io.Serializable;
|
|
|
@@ -156,8 +158,20 @@ public class CustomerContactVo implements Serializable {
|
|
|
@ExcelProperty(value = "平台标识")
|
|
|
private String platformCode;
|
|
|
|
|
|
+ private Long createBy;
|
|
|
+
|
|
|
private Date createTime;
|
|
|
|
|
|
+ private Long updateBy;
|
|
|
+
|
|
|
+ private Date updateTime;
|
|
|
+
|
|
|
+ @Translation(type = TransConstant.USER_ID_TO_NAME, mapper = "createBy")
|
|
|
+ private String createByName;
|
|
|
+
|
|
|
+ @Translation(type = TransConstant.USER_ID_TO_NAME, mapper = "updateBy")
|
|
|
+ private String updateByName;
|
|
|
+
|
|
|
private String delFlag;
|
|
|
|
|
|
/**
|