服务指令:增加预览图片、即时指令图片项
This commit is contained in:
parent
6ac9f12216
commit
b9ca3e2f91
|
@ -27,6 +27,8 @@
|
|||
csd.sys_org_code,
|
||||
csd.mp3_file,
|
||||
csd.mp4_file,
|
||||
csd.preview_file,
|
||||
csd.immediate_file,
|
||||
cdt.id AS tag_id,
|
||||
cdt.tag_name
|
||||
FROM nu_config_service_directive csd
|
||||
|
|
|
@ -40,6 +40,8 @@
|
|||
<result property="mp4File" column="mp4_file" />
|
||||
<result property="categoryName" column="csc_category_name" />
|
||||
<result property="typeName" column="cst_type_name" />
|
||||
<result property="previewFile" column="preview_file"/>
|
||||
<result property="immediateFile" column="immediate_file"/>
|
||||
<!-- 关联的标签列表 -->
|
||||
<collection property="tagList" ofType="com.nu.modules.directivetag.entity.DirectiveTag">
|
||||
<id property="id" column="tag_id" />
|
||||
|
@ -91,6 +93,8 @@
|
|||
csd.sys_org_code AS directive_sys_org_code,
|
||||
csd.mp3_file,
|
||||
csd.mp4_file,
|
||||
csd.preview_file,
|
||||
csd.immediate_file,
|
||||
cdt.id AS tag_id,
|
||||
cdt.tag_name,
|
||||
cdt.sort AS tag_sort,
|
||||
|
|
|
@ -122,13 +122,17 @@ public class ConfigServiceDirective implements Serializable {
|
|||
@ApiModelProperty(value = "所属部门")
|
||||
private java.lang.String sysOrgCode;
|
||||
/**语音文件*/
|
||||
@Excel(name = "语音文件", width = 15)
|
||||
@ApiModelProperty(value = "语音文件")
|
||||
private java.lang.String mp3File;
|
||||
/**视频文件*/
|
||||
@Excel(name = "视频文件", width = 15)
|
||||
@ApiModelProperty(value = "视频文件")
|
||||
private java.lang.String mp4File;
|
||||
/**预览图片*/
|
||||
@ApiModelProperty(value = "预览图片")
|
||||
private java.lang.String previewFile;
|
||||
/**即时指令图片*/
|
||||
@ApiModelProperty(value = "即时指令图片")
|
||||
private java.lang.String immediateFile;
|
||||
|
||||
//合并单元格用:类别合并的行数
|
||||
@TableField(exist = false)
|
||||
|
|
|
@ -28,6 +28,8 @@
|
|||
<result property="sysOrgCode" column="sys_org_code"/>
|
||||
<result property="mp3File" column="mp3_file"/>
|
||||
<result property="mp4File" column="mp4_file"/>
|
||||
<result property="previewFile" column="preview_file"/>
|
||||
<result property="immediateFile" column="immediate_file"/>
|
||||
|
||||
<collection property="tagList" ofType="com.nu.modules.directivetag.entity.DirectiveTag">
|
||||
<id property="id" column="tagId"/>
|
||||
|
@ -61,6 +63,8 @@
|
|||
c.sys_org_code,
|
||||
c.mp3_file,
|
||||
c.mp4_file,
|
||||
c.preview_file,
|
||||
c.immediate_file,
|
||||
tag.id as tagId,
|
||||
tag.tag_name as tagName
|
||||
FROM nu_config_service_directive c
|
||||
|
|
|
@ -40,6 +40,8 @@
|
|||
<result property="mp4File" column="mp4_file" />
|
||||
<result property="categoryName" column="csc_category_name" />
|
||||
<result property="typeName" column="cst_type_name" />
|
||||
<result property="previewFile" column="preview_file"/>
|
||||
<result property="immediateFile" column="immediate_file"/>
|
||||
<!-- 关联的标签列表 -->
|
||||
<collection property="tagList" ofType="com.nu.modules.directivetag.entity.DirectiveTag">
|
||||
<id property="id" column="tag_id" />
|
||||
|
@ -91,6 +93,8 @@
|
|||
csd.sys_org_code AS directive_sys_org_code,
|
||||
csd.mp3_file,
|
||||
csd.mp4_file,
|
||||
csd.preview_file,
|
||||
csd.immediate_file,
|
||||
cdt.id AS tag_id,
|
||||
cdt.tag_name,
|
||||
cdt.sort AS tag_sort,
|
||||
|
|
Loading…
Reference in New Issue