forked from rongchao/epmet-cloud-rizhao
5 changed files with 70 additions and 0 deletions
@ -0,0 +1,21 @@ |
|||||
|
package com.epmet.dto.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Description |
||||
|
* @Author yzm |
||||
|
* @Date 2022/9/8 10:44 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class CustomerParaResDTO implements Serializable { |
||||
|
/** |
||||
|
* 开启:open |
||||
|
* 关闭:closed |
||||
|
* 没有数据默认开启 |
||||
|
*/ |
||||
|
private String govPartyHelper; |
||||
|
} |
||||
|
|
@ -0,0 +1,3 @@ |
|||||
|
INSERT INTO `epmet_oper_crm`.`customer_parameter` ( `ID`, `CUSTOMER_ID`, `PARAMETER_KEY`, `PARAMETER_NAME`, `PARAMETER_SWITCH`, `PARAMETER_VALUE`, `DESCRIPTION`, `DEL_FLAG`, `REVISION`, `CREATED_BY`, `CREATED_TIME`, `UPDATED_BY`, `UPDATED_TIME` ) |
||||
|
VALUES |
||||
|
( '5ce6f22c-2f22-11ed-bb6b-0050568f8cf7', 'default', 'gov_party_helper', '工作端党建小助手是否开启?', 'on', 'open', '开启:open;关闭:closed;不配置,默认是开启', 0, 0, 'APP_USER', '2022-09-08 11:03:35', 'APP_USER', '2022-09-08 11:03:45' ); |
Loading…
Reference in new issue