提交 ef6fde4c 作者: 张开石

1、会议类型列表接口添加响应字段create_user

父级 3f48c479
...@@ -29,6 +29,8 @@ public class MeetTypeDto { ...@@ -29,6 +29,8 @@ public class MeetTypeDto {
private Long relId; private Long relId;
// 类型描述的内容 // 类型描述的内容
private String content; private String content;
// 创建者
private String createUser;
// 会议模板 // 会议模板
private List<RecordTemplateDto> recordTemplateDTOList; private List<RecordTemplateDto> recordTemplateDTOList;
} }
\ No newline at end of file
...@@ -16,7 +16,7 @@ public class MeetTemplateEnable { ...@@ -16,7 +16,7 @@ public class MeetTemplateEnable {
/** /**
* *
*/ */
@TableId @TableId(type = IdType.AUTO)
private Long id; private Long id;
/** /**
......
...@@ -15,7 +15,7 @@ public class MeetType { ...@@ -15,7 +15,7 @@ public class MeetType {
/** /**
* 主键ID * 主键ID
*/ */
@TableId @TableId(type = IdType.AUTO)
private Long id; private Long id;
/** /**
......
...@@ -15,6 +15,7 @@ ...@@ -15,6 +15,7 @@
meet_type.auth_type AS meeting_type_auth_type, meet_type.auth_type AS meeting_type_auth_type,
meet_type.rel_id AS meeting_type_rel_id, meet_type.rel_id AS meeting_type_rel_id,
meet_type.content AS meeting_type_content, meet_type.content AS meeting_type_content,
meet_type.create_user as meeting_type_create_user,
cmt_meeting_record_template.id as template_id, cmt_meeting_record_template.id as template_id,
cmt_meeting_record_template.name as template_name, cmt_meeting_record_template.name as template_name,
...@@ -32,6 +33,7 @@ ...@@ -32,6 +33,7 @@
<result property="authType" column="meeting_type_auth_type" /> <result property="authType" column="meeting_type_auth_type" />
<result property="relId" column="meeting_type_rel_id" /> <result property="relId" column="meeting_type_rel_id" />
<result property="content" column="meeting_type_content" /> <result property="content" column="meeting_type_content" />
<result property="createUser" column="meeting_type_create_user" />
<collection property="recordTemplateDTOList" javaType="List" ofType="com.cmeeting.dto.RecordTemplateDto"> <collection property="recordTemplateDTOList" javaType="List" ofType="com.cmeeting.dto.RecordTemplateDto">
<id property="id" column="template_id" /> <id property="id" column="template_id" />
<result property="name" column="template_name" /> <result property="name" column="template_name" />
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论