工单指派多选

This commit is contained in:
xiaofajia 2024-10-12 12:30:54 +08:00
parent 5f079d7625
commit 96088fcd74
3 changed files with 5 additions and 5 deletions

View File

@ -64,12 +64,12 @@ public class DlRepairTitem extends TenantBaseDO {
/**
* 维修人员ID(system_users表的ID)
*/
private Long repairId;
private String repairIds;
/**
* 维修人员名字(company_staff表的name)
*/
private String repairName;
private String repairNames;
/**
* 销售人员ID(system_users表的ID)

View File

@ -19,7 +19,7 @@
<where>
main.deleted = 0
<if test="entity.userName != null and entity.userName != ''">
and main.user_name = #{entity.userName}
and main.user_name like concat('%', #{entity.userName}, '%')
</if>
<if test="entity.workType != null and entity.workType != ''">
and main.work_type = #{entity.workType}

View File

@ -12,8 +12,8 @@
drti.item_price,
drti.item_discount,
drti.item_money,
drti.repair_id,
drti.repair_name,
drti.repair_ids,
drti.repair_names,
drti.sale_id,
drti.sale_name,
drti.item_type,