This commit is contained in:
张秉卓
2025-12-25 18:13:16 +08:00
7 changed files with 24 additions and 9 deletions

View File

@ -28,7 +28,7 @@ import com.pictc.annotations.datalog.ValueDirectionType;
* @Version 1.0
*/
@Data
@LogTable(source="lng_score_dtl",name="客户评价")
@LogTable(source="lng_score_dtl",name="客户评价")
public class UpdateLngScoreDtlDto implements Serializable {
private static final long serialVersionUID = 1L;

View File

@ -63,10 +63,18 @@ public class LngScoreDtlVo {
/**
* 评分部门(只读)
*/
@ApiModelProperty("评分部门(只读)")
private String eDeptCode;
* 评分部门(只读)
*/
@ApiModelProperty("评分部门(只读)")
@Trans(type = TransType.DEPT_BY_CODE, transToFieldName = "eDeptName")
private String eDeptCode;
/**
* 评分部门(只读)
*/
@ApiModelProperty("评分部门(只读)")
private String eDeptName;
/**