1、服务指令-机构详情-服务属性回显
2、操作日志: 1)新增类型:增加服务属性展示、去除超时时长、将默认指令图标、焦点指令图标挪到指令描述上方 2)变更类型:增加服务属性回显
This commit is contained in:
parent
52b72833f7
commit
060fdcf1af
|
|
@ -1,6 +1,9 @@
|
||||||
package com.nu.dto;
|
package com.nu.dto;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
import org.jeecg.common.aspect.annotation.Dict;
|
||||||
|
import org.jeecgframework.poi.excel.annotation.Excel;
|
||||||
|
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
|
@ -53,9 +56,13 @@ public class DirectiveAsyncMQDto implements Serializable {
|
||||||
*/
|
*/
|
||||||
private String chargingFrequency;
|
private String chargingFrequency;
|
||||||
/**
|
/**
|
||||||
* 周期类型 1日常护理 2周期护理 3即时护理
|
* 指令类型 1日常护理 2周期护理 3即时护理
|
||||||
*/
|
*/
|
||||||
private String cycleType;
|
private String cycleType;
|
||||||
|
/**
|
||||||
|
* 服务属性 ds定时 js计时
|
||||||
|
*/
|
||||||
|
private String serviceAttribute;
|
||||||
/**
|
/**
|
||||||
* 排序
|
* 排序
|
||||||
*/
|
*/
|
||||||
|
|
@ -159,7 +166,7 @@ public class DirectiveAsyncMQDto implements Serializable {
|
||||||
private String categoryName;
|
private String categoryName;
|
||||||
//服务类型中文名称
|
//服务类型中文名称
|
||||||
private String typeName;
|
private String typeName;
|
||||||
//周期类型中文名称
|
//指令类型中文名称
|
||||||
private String cycleTypeName;
|
private String cycleTypeName;
|
||||||
//体型标签id,id,id
|
//体型标签id,id,id
|
||||||
private String bodyTags;
|
private String bodyTags;
|
||||||
|
|
|
||||||
|
|
@ -9,6 +9,7 @@ import io.swagger.annotations.ApiModelProperty;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
import lombok.EqualsAndHashCode;
|
import lombok.EqualsAndHashCode;
|
||||||
import lombok.experimental.Accessors;
|
import lombok.experimental.Accessors;
|
||||||
|
import org.jeecg.common.aspect.annotation.Dict;
|
||||||
import org.jeecgframework.poi.excel.annotation.Excel;
|
import org.jeecgframework.poi.excel.annotation.Excel;
|
||||||
import org.springframework.format.annotation.DateTimeFormat;
|
import org.springframework.format.annotation.DateTimeFormat;
|
||||||
|
|
||||||
|
|
@ -26,52 +27,104 @@ import java.util.Date;
|
||||||
public class DirectiveOpeLogInfoMQDto implements Serializable {
|
public class DirectiveOpeLogInfoMQDto implements Serializable {
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/**id*/
|
/**
|
||||||
|
* id
|
||||||
|
*/
|
||||||
private String id;
|
private String id;
|
||||||
/**nu_config_directive_ope_log_main.id*/
|
/**
|
||||||
|
* nu_config_directive_ope_log_main.id
|
||||||
|
*/
|
||||||
private String pkId;
|
private String pkId;
|
||||||
/**分类标签*/
|
/**
|
||||||
|
* 分类标签
|
||||||
|
*/
|
||||||
private String instructionTagId;
|
private String instructionTagId;
|
||||||
/**分类标签名称*/
|
/**
|
||||||
|
* 分类标签名称
|
||||||
|
*/
|
||||||
private String instructionTagName;
|
private String instructionTagName;
|
||||||
/**服务类别id*/
|
/**
|
||||||
|
* 服务类别id
|
||||||
|
*/
|
||||||
private String categoryId;
|
private String categoryId;
|
||||||
/**服务类别名称*/
|
/**
|
||||||
|
* 服务类别名称
|
||||||
|
*/
|
||||||
private String categoryName;
|
private String categoryName;
|
||||||
/**服务类型id*/
|
/**
|
||||||
|
* 服务类型id
|
||||||
|
*/
|
||||||
private String typeId;
|
private String typeId;
|
||||||
/**服务类型名称*/
|
/**
|
||||||
|
* 服务类型名称
|
||||||
|
*/
|
||||||
private String typeName;
|
private String typeName;
|
||||||
/**服务指令id*/
|
/**
|
||||||
|
* 服务指令id
|
||||||
|
*/
|
||||||
private String directiveId;
|
private String directiveId;
|
||||||
/**服务指令名称*/
|
/**
|
||||||
|
* 服务指令名称
|
||||||
|
*/
|
||||||
private String directiveName;
|
private String directiveName;
|
||||||
/**收费价格*/
|
/**
|
||||||
|
* 收费价格
|
||||||
|
*/
|
||||||
private BigDecimal tollPrice;
|
private BigDecimal tollPrice;
|
||||||
/**提成价格*/
|
/**
|
||||||
|
* 提成价格
|
||||||
|
*/
|
||||||
private BigDecimal comPrice;
|
private BigDecimal comPrice;
|
||||||
/**服务说明*/
|
/**
|
||||||
|
* 服务属性 ds定时 js计时
|
||||||
|
*/
|
||||||
|
private java.lang.String serviceAttribute;
|
||||||
|
/**
|
||||||
|
* 服务说明
|
||||||
|
*/
|
||||||
private String serviceContent;
|
private String serviceContent;
|
||||||
/**服务时长(分钟)*/
|
/**
|
||||||
|
* 服务时长(分钟)
|
||||||
|
*/
|
||||||
private String serviceDuration;
|
private String serviceDuration;
|
||||||
/**超时时长(分钟)*/
|
/**
|
||||||
|
* 超时时长(分钟)
|
||||||
|
*/
|
||||||
private String timeoutDuration;
|
private String timeoutDuration;
|
||||||
/**所属部门*/
|
/**
|
||||||
|
* 所属部门
|
||||||
|
*/
|
||||||
private String sysOrgCode;
|
private String sysOrgCode;
|
||||||
/**语音文件*/
|
/**
|
||||||
|
* 语音文件
|
||||||
|
*/
|
||||||
private String mp3File;
|
private String mp3File;
|
||||||
/**视频文件*/
|
/**
|
||||||
|
* 视频文件
|
||||||
|
*/
|
||||||
private String mp4File;
|
private String mp4File;
|
||||||
/**服务指令图片大图*/
|
/**
|
||||||
|
* 服务指令图片大图
|
||||||
|
*/
|
||||||
private String previewFile;
|
private String previewFile;
|
||||||
/**服务指令图片小图*/
|
/**
|
||||||
|
* 服务指令图片小图
|
||||||
|
*/
|
||||||
private String previewFileSmall;
|
private String previewFileSmall;
|
||||||
/**即时指令图片*/
|
/**
|
||||||
|
* 即时指令图片
|
||||||
|
*/
|
||||||
private String immediateFile;
|
private String immediateFile;
|
||||||
/**即时指令焦点图片*/
|
/**
|
||||||
|
* 即时指令焦点图片
|
||||||
|
*/
|
||||||
private String immediateFileFocus;
|
private String immediateFileFocus;
|
||||||
/**创建日期*/
|
/**
|
||||||
|
* 创建日期
|
||||||
|
*/
|
||||||
private Date createTime;
|
private Date createTime;
|
||||||
/**数据类型 1修改前 2修改后*/
|
/**
|
||||||
|
* 数据类型 1修改前 2修改后
|
||||||
|
*/
|
||||||
private String dataType;
|
private String dataType;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -87,6 +87,13 @@ public class DirectiveOpeLogInfo implements Serializable {
|
||||||
@ApiModelProperty(value = "周期类型 1日常护理 2周期护理 3即时护理")
|
@ApiModelProperty(value = "周期类型 1日常护理 2周期护理 3即时护理")
|
||||||
@Dict(dicCode = "period_type")
|
@Dict(dicCode = "period_type")
|
||||||
private String cycleType;
|
private String cycleType;
|
||||||
|
/**
|
||||||
|
* 服务属性 ds定时 js计时
|
||||||
|
*/
|
||||||
|
@Excel(name = "服务属性 ds定时 js计时", width = 15)
|
||||||
|
@ApiModelProperty(value = "服务属性 ds定时 js计时")
|
||||||
|
@Dict(dicCode = "service_attribute")
|
||||||
|
private java.lang.String serviceAttribute;
|
||||||
/**服务说明*/
|
/**服务说明*/
|
||||||
@Excel(name = "服务说明", width = 15)
|
@Excel(name = "服务说明", width = 15)
|
||||||
@ApiModelProperty(value = "服务说明")
|
@ApiModelProperty(value = "服务说明")
|
||||||
|
|
|
||||||
|
|
@ -76,4 +76,5 @@ public class DirectiveOpeLogMain implements Serializable {
|
||||||
@Excel(name = "周期类型名称", width = 15)
|
@Excel(name = "周期类型名称", width = 15)
|
||||||
@ApiModelProperty(value = "周期类型名称")
|
@ApiModelProperty(value = "周期类型名称")
|
||||||
private String cycleTypeName;
|
private String cycleTypeName;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -96,6 +96,13 @@ public class ConfigServiceDirective implements Serializable {
|
||||||
@ApiModelProperty(value = "收费频次")
|
@ApiModelProperty(value = "收费频次")
|
||||||
@Dict(dicCode = "billing_frequency")
|
@Dict(dicCode = "billing_frequency")
|
||||||
private java.lang.String chargingFrequency;
|
private java.lang.String chargingFrequency;
|
||||||
|
/**
|
||||||
|
* 服务属性 ds定时 js计时
|
||||||
|
*/
|
||||||
|
@Excel(name = "服务属性 ds定时 js计时", width = 15)
|
||||||
|
@ApiModelProperty(value = "服务属性 ds定时 js计时")
|
||||||
|
@Dict(dicCode = "service_attribute")
|
||||||
|
private java.lang.String serviceAttribute;
|
||||||
/**
|
/**
|
||||||
* 排序
|
* 排序
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@
|
||||||
<result property="izReimbursement" column="iz_reimbursement"/>
|
<result property="izReimbursement" column="iz_reimbursement"/>
|
||||||
<result property="izPreferential" column="iz_preferential"/>
|
<result property="izPreferential" column="iz_preferential"/>
|
||||||
<result property="chargingFrequency" column="charging_frequency"/>
|
<result property="chargingFrequency" column="charging_frequency"/>
|
||||||
<result property="cycleType" column="cycle_type"/>
|
<result property="serviceAttribute" column="service_attribute"/>
|
||||||
<result property="sort" column="sort"/>
|
<result property="sort" column="sort"/>
|
||||||
<result property="serviceContent" column="service_content"/>
|
<result property="serviceContent" column="service_content"/>
|
||||||
<result property="serviceDuration" column="service_duration"/>
|
<result property="serviceDuration" column="service_duration"/>
|
||||||
|
|
@ -64,6 +64,7 @@
|
||||||
c.iz_reimbursement,
|
c.iz_reimbursement,
|
||||||
c.iz_preferential,
|
c.iz_preferential,
|
||||||
c.charging_frequency,
|
c.charging_frequency,
|
||||||
|
c.service_attribute,
|
||||||
c.sort,
|
c.sort,
|
||||||
c.service_content,
|
c.service_content,
|
||||||
c.service_duration,
|
c.service_duration,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue