列表返回字段添加createUserId

This commit is contained in:
2026-01-27 17:31:33 +08:00
parent 31904e4c3c
commit 62e9134209
3 changed files with 5 additions and 1 deletions

View File

@ -97,4 +97,6 @@ public class LngContractPageVo {
*/
@ApiModelProperty("自主托运")
private String transName;
private Long createUserId;
}

View File

@ -75,4 +75,6 @@ public class LngScorePageVo {
@ApiModelProperty("备注")
private String note;
private Long createUserId;
}

View File

@ -23,7 +23,7 @@ import com.xjrsoft.module.contract.vo.LngContractPageVo;
public interface LngContractPurMapper extends MPJBaseMapper<LngContractPur>, BaseMapper<LngContractPur> {
@Select("SELECT k.id, k.rule_user_id, k.k_no, k.k_name, su.su_sname AS cp_name, k.date_from," +
@Select("SELECT k.id, k.rule_user_id, k.k_no, k.k_name,k.create_user_id, su.su_sname AS cp_name, k.date_from," +
" k.date_to, GROUP_CONCAT(DISTINCT p.full_name) AS point_up_name," +
" GROUP_CONCAT(DISTINCT di_trans.name) AS trans_name, com.name as com_name," +
" k.appro_code, dd_a.name as appro_name, k.note" +