员工标签不显示服务属性问题
This commit is contained in:
parent
f433170cdd
commit
2c0606f61f
|
|
@ -335,6 +335,8 @@ public class ConfigServiceDirective implements Serializable {
|
|||
private String syncCode;
|
||||
@TableField(exist = false)
|
||||
private String notId;
|
||||
@TableField(exist = false)
|
||||
private String serviceAttributeName;
|
||||
// /**
|
||||
// * 指令类型 1日常护理 2周期护理 3即时护理
|
||||
// */
|
||||
|
|
|
|||
|
|
@ -68,6 +68,7 @@
|
|||
c.sort,
|
||||
c.service_content,
|
||||
c.service_attribute,
|
||||
case c.service_attribute when 'ds' then '定时' when 'js' then '计时' else null end as serviceAttributeName,
|
||||
c.service_duration,
|
||||
c.timeout_duration,
|
||||
c.status,
|
||||
|
|
|
|||
|
|
@ -21,6 +21,8 @@
|
|||
<result property="categoryId" column="category_id"/>
|
||||
<result property="typeId" column="type_id"/>
|
||||
<result property="instructionTagId" column="instruction_tag_id"/>
|
||||
<result property="serviceAttribute" column="service_attribute"/>
|
||||
<result property="serviceAttributeName" column="serviceAttributeName"/>
|
||||
<result property="tollPrice" column="toll_price"/>
|
||||
<result property="comPrice" column="com_price"/>
|
||||
<result property="izReimbursement" column="iz_reimbursement"/>
|
||||
|
|
@ -90,6 +92,8 @@
|
|||
csd.category_id,
|
||||
csd.type_id,
|
||||
csd.instruction_tag_id,
|
||||
csd.service_attribute,
|
||||
case csd.service_attribute when 'ds' then '定时' when 'js' then '计时' else null end as serviceAttributeName,
|
||||
csd.toll_price,
|
||||
csd.com_price,
|
||||
csd.iz_reimbursement,
|
||||
|
|
|
|||
Loading…
Reference in New Issue