工单指派多选
This commit is contained in:
parent
5f079d7625
commit
96088fcd74
@ -64,12 +64,12 @@ public class DlRepairTitem extends TenantBaseDO {
|
|||||||
/**
|
/**
|
||||||
* 维修人员ID(system_users表的ID)
|
* 维修人员ID(system_users表的ID)
|
||||||
*/
|
*/
|
||||||
private Long repairId;
|
private String repairIds;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 维修人员名字(company_staff表的name)
|
* 维修人员名字(company_staff表的name)
|
||||||
*/
|
*/
|
||||||
private String repairName;
|
private String repairNames;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 销售人员ID(system_users表的ID)
|
* 销售人员ID(system_users表的ID)
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
<where>
|
<where>
|
||||||
main.deleted = 0
|
main.deleted = 0
|
||||||
<if test="entity.userName != null and entity.userName != ''">
|
<if test="entity.userName != null and entity.userName != ''">
|
||||||
and main.user_name = #{entity.userName}
|
and main.user_name like concat('%', #{entity.userName}, '%')
|
||||||
</if>
|
</if>
|
||||||
<if test="entity.workType != null and entity.workType != ''">
|
<if test="entity.workType != null and entity.workType != ''">
|
||||||
and main.work_type = #{entity.workType}
|
and main.work_type = #{entity.workType}
|
||||||
|
@ -12,8 +12,8 @@
|
|||||||
drti.item_price,
|
drti.item_price,
|
||||||
drti.item_discount,
|
drti.item_discount,
|
||||||
drti.item_money,
|
drti.item_money,
|
||||||
drti.repair_id,
|
drti.repair_ids,
|
||||||
drti.repair_name,
|
drti.repair_names,
|
||||||
drti.sale_id,
|
drti.sale_id,
|
||||||
drti.sale_name,
|
drti.sale_name,
|
||||||
drti.item_type,
|
drti.item_type,
|
||||||
|
Loading…
Reference in New Issue
Block a user