Browse Source

返回支持添加

release
jianjun 3 years ago
parent
commit
274212eca1
  1. 5
      epmet-commons/epmet-commons-tools/src/main/java/com/epmet/commons/tools/dto/form/IcExportItemListFormDTO.java
  2. 5
      epmet-module/oper-customize/oper-customize-client/src/main/java/com/epmet/dto/result/FormItemBaseResult.java
  3. 1
      epmet-module/oper-customize/oper-customize-server/src/main/resources/mapper/IcFormItemDao.xml

5
epmet-commons/epmet-commons-tools/src/main/java/com/epmet/commons/tools/dto/form/IcExportItemListFormDTO.java

@ -69,5 +69,10 @@ public class IcExportItemListFormDTO implements Serializable {
*/ */
private String optionSourceType; private String optionSourceType;
/**
* 是否支持添加即多对一eg需求列表
*/
private boolean supportAdd;
} }

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

@ -55,5 +55,10 @@ public class FormItemBaseResult implements Serializable {
*/ */
private String optionSourceValue; private String optionSourceValue;
/**
* 是否支持添加即多对一eg需求列表
*/
private boolean supportAdd;
} }

1
epmet-module/oper-customize/oper-customize-server/src/main/resources/mapper/IcFormItemDao.xml

@ -252,6 +252,7 @@
ifi.OPTION_SOURCE_VALUE, ifi.OPTION_SOURCE_VALUE,
ifi.OPTION_SOURCE_TYPE, ifi.OPTION_SOURCE_TYPE,
ifig.TABLE_NAME, ifig.TABLE_NAME,
ifig.SUPPORT_ADD,
CONCAT(ifi.COLUMN_NAME, if(ifi.COLUMN_NUM = 0, '', ifi.COLUMN_NUM)) columnName CONCAT(ifi.COLUMN_NAME, if(ifi.COLUMN_NUM = 0, '', ifi.COLUMN_NUM)) columnName
FROM FROM
ic_form_item ifi ic_form_item ifi

Loading…
Cancel
Save