Browse Source

REGION改为varchar注释:所属区域:titleList.标题区、topList.置顶区、functionList.功能区、floatingList.悬浮区

dev_shibei_match
yinzuomei 6 years ago
parent
commit
29dc99bed9
  1. 8
      epmet-module/oper-customize/oper-customize-client/src/main/java/com/epmet/dto/CustomerHomeDetailDTO.java
  2. 8
      epmet-module/oper-customize/oper-customize-client/src/main/java/com/epmet/dto/CustomerHomeTemplateDTO.java
  3. 8
      epmet-module/oper-customize/oper-customize-client/src/main/java/com/epmet/dto/HomeComponentDTO.java
  4. 4
      epmet-module/oper-customize/oper-customize-client/src/main/java/com/epmet/dto/form/HomeComponentFormDTO.java
  5. 5
      epmet-module/oper-customize/oper-customize-client/src/main/java/com/epmet/dto/result/CommonComponentResultDTO.java
  6. 6
      epmet-module/oper-customize/oper-customize-server/src/main/java/com/epmet/entity/CustomerHomeDetailEntity.java
  7. 6
      epmet-module/oper-customize/oper-customize-server/src/main/java/com/epmet/entity/CustomerHomeTemplateEntity.java
  8. 6
      epmet-module/oper-customize/oper-customize-server/src/main/java/com/epmet/entity/HomeComponentEntity.java
  9. 6
      epmet-module/oper-customize/oper-customize-server/src/main/resources/mapper/HomeComponentDao.xml

8
epmet-module/oper-customize/oper-customize-client/src/main/java/com/epmet/dto/CustomerHomeDetailDTO.java

@ -23,7 +23,7 @@ import lombok.Data;
/** /**
* 客户首页详情表 * 客户首页详情表
* *
* @author generator generator@elink-cn.com * @author generator generator@elink-cn.com
* @since v1.0.0 2020-03-10 * @since v1.0.0 2020-03-10
@ -49,9 +49,9 @@ public class CustomerHomeDetailDTO implements Serializable {
private String componentId; private String componentId;
/** /**
* 所属区域0.标题区1.置顶区2.功能区3.悬浮区 * 所属区域titleList.标题区topList.置顶区functionList.功能区floatingList.悬浮区
*/ */
private Integer region; private String region;
/** /**
* 高级配置 * 高级配置
@ -93,4 +93,4 @@ public class CustomerHomeDetailDTO implements Serializable {
*/ */
private Date updatedTime; private Date updatedTime;
} }

8
epmet-module/oper-customize/oper-customize-client/src/main/java/com/epmet/dto/CustomerHomeTemplateDTO.java

@ -23,7 +23,7 @@ import lombok.Data;
/** /**
* 客户首页模板表 * 客户首页模板表
* *
* @author generator generator@elink-cn.com * @author generator generator@elink-cn.com
* @since v1.0.0 2020-03-10 * @since v1.0.0 2020-03-10
@ -49,9 +49,9 @@ public class CustomerHomeTemplateDTO implements Serializable {
private Integer clientType; private Integer clientType;
/** /**
* 所属区域0.标题区1.置顶区2.功能区3.悬浮区 * 所属区域titleList.标题区topList.置顶区functionList.功能区floatingList.悬浮区
*/ */
private Integer region; private String region;
/** /**
* 高级配置 JSON串 * 高级配置 JSON串
@ -93,4 +93,4 @@ public class CustomerHomeTemplateDTO implements Serializable {
*/ */
private Date updatedTime; private Date updatedTime;
} }

8
epmet-module/oper-customize/oper-customize-client/src/main/java/com/epmet/dto/HomeComponentDTO.java

@ -23,7 +23,7 @@ import lombok.Data;
/** /**
* 首页组件表 * 首页组件表
* *
* @author generator generator@elink-cn.com * @author generator generator@elink-cn.com
* @since v1.0.0 2020-03-10 * @since v1.0.0 2020-03-10
@ -64,9 +64,9 @@ public class HomeComponentDTO implements Serializable {
private Integer conponentType; private Integer conponentType;
/** /**
* 所属区域0.标题区1.置顶区2.功能区3.悬浮区 * 所属区域titleList.标题区topList.置顶区functionList.功能区floatingList.悬浮区
*/ */
private Integer region; private String region;
/** /**
* 高级配置 * 高级配置
@ -113,4 +113,4 @@ public class HomeComponentDTO implements Serializable {
*/ */
private Date updatedTime; private Date updatedTime;
} }

4
epmet-module/oper-customize/oper-customize-client/src/main/java/com/epmet/dto/form/HomeComponentFormDTO.java

@ -20,9 +20,9 @@ public class HomeComponentFormDTO implements Serializable {
private String componentId; private String componentId;
/** /**
* 所属区域 * 所属区域titleList.标题区topList.置顶区functionList.功能区floatingList.悬浮区
*/ */
private Integer region; private String region;
/** /**
* 高级配置项 * 高级配置项

5
epmet-module/oper-customize/oper-customize-client/src/main/java/com/epmet/dto/result/CommonComponentResultDTO.java

@ -42,4 +42,9 @@ public class CommonComponentResultDTO implements Serializable {
* 配置项说明 * 配置项说明
*/ */
private String configurationDescription; private String configurationDescription;
/**
* 所属区域0.标题区1.置顶区2.功能区3.悬浮区
*/
private String region;
} }

6
epmet-module/oper-customize/oper-customize-server/src/main/java/com/epmet/entity/CustomerHomeDetailEntity.java

@ -26,7 +26,7 @@ import lombok.EqualsAndHashCode;
import java.util.Date; import java.util.Date;
/** /**
* 客户首页详情表 * 客户首页详情表
* *
* @author generator generator@elink-cn.com * @author generator generator@elink-cn.com
* @since v1.0.0 2020-03-10 * @since v1.0.0 2020-03-10
@ -49,9 +49,9 @@ public class CustomerHomeDetailEntity extends BaseEpmetEntity {
private String componentId; private String componentId;
/** /**
* 所属区域0.标题区1.置顶区2.功能区3.悬浮区 * 所属区域titleList.标题区topList.置顶区functionList.功能区floatingList.悬浮区
*/ */
private Integer region; private String region;
/** /**
* 高级配置 * 高级配置

6
epmet-module/oper-customize/oper-customize-server/src/main/java/com/epmet/entity/CustomerHomeTemplateEntity.java

@ -26,7 +26,7 @@ import lombok.EqualsAndHashCode;
import java.util.Date; import java.util.Date;
/** /**
* 客户首页模板表 * 客户首页模板表
* *
* @author generator generator@elink-cn.com * @author generator generator@elink-cn.com
* @since v1.0.0 2020-03-10 * @since v1.0.0 2020-03-10
@ -49,9 +49,9 @@ public class CustomerHomeTemplateEntity extends BaseEpmetEntity {
private Integer clientType; private Integer clientType;
/** /**
* 所属区域0.标题区1.置顶区2.功能区3.悬浮区 * 所属区域titleList.标题区topList.置顶区functionList.功能区floatingList.悬浮区
*/ */
private Integer region; private String region;
/** /**
* 高级配置 JSON串 * 高级配置 JSON串

6
epmet-module/oper-customize/oper-customize-server/src/main/java/com/epmet/entity/HomeComponentEntity.java

@ -26,7 +26,7 @@ import lombok.EqualsAndHashCode;
import java.util.Date; import java.util.Date;
/** /**
* 首页组件表 * 首页组件表
* *
* @author generator generator@elink-cn.com * @author generator generator@elink-cn.com
* @since v1.0.0 2020-03-10 * @since v1.0.0 2020-03-10
@ -64,9 +64,9 @@ public class HomeComponentEntity extends BaseEpmetEntity {
private Integer conponentType; private Integer conponentType;
/** /**
* 所属区域0.标题区1.置顶区2.功能区3.悬浮区 * 所属区域titleList.标题区topList.置顶区functionList.功能区floatingList.悬浮区
*/ */
private Integer region; private String region;
/** /**
* 高级配置 * 高级配置

6
epmet-module/oper-customize/oper-customize-server/src/main/resources/mapper/HomeComponentDao.xml

@ -32,7 +32,8 @@
hc.COMPONENT_FRONT_ID, hc.COMPONENT_FRONT_ID,
hc.CONFIGURATION, hc.CONFIGURATION,
hc.DEMO_DATA, hc.DEMO_DATA,
hc.CONFIGURATION_DESCRIPTION hc.CONFIGURATION_DESCRIPTION,
hc.REGION
FROM FROM
home_component hc home_component hc
WHERE WHERE
@ -85,7 +86,8 @@
hc.COMPONENT_FRONT_ID, hc.COMPONENT_FRONT_ID,
hc.CONFIGURATION, hc.CONFIGURATION,
hc.DEMO_DATA, hc.DEMO_DATA,
hc.CONFIGURATION_DESCRIPTION hc.CONFIGURATION_DESCRIPTION,
hc.REGION
FROM FROM
home_component hc home_component hc
WHERE WHERE

Loading…
Cancel
Save