|
@@ -1,439 +0,0 @@
|
|
|
-#常规设置
|
|
|
-server.port =10006
|
|
|
-server.servlet.context-path=
|
|
|
-spring.servlet.multipart.max-file-size=40MB
|
|
|
-spring.servlet.multipart.max-request-size=40MB
|
|
|
-spring.servlet.multipart.location=/tmp
|
|
|
-#是否直接web端打印错误信息
|
|
|
-spring.devtools.add-properties=true
|
|
|
-
|
|
|
-##SQL执行分析,该插件有性能损耗,不建议生产环境使用
|
|
|
-spring.datasource.druid.db-type=mysql
|
|
|
-spring.datasource.type=com.alibaba.druid.pool.DruidDataSource
|
|
|
-spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
|
|
|
-spring.datasource.url=jdbc:mysql://121.43.111.127:3306/jiasm?verifyServerCertificate=false&useSSL=false&requireSSL=false&useUnicode=true&characterEncoding=UTF-8&characterSetResults=utf8&serverTimezone=Asia/Shanghai
|
|
|
-spring.datasource.username=root
|
|
|
-spring.datasource.password=xch!eCdvc124@
|
|
|
-#spring.datasource.url=jdbc:mysql://jiasm-zfire-rds-aliyun-com.rwlb.rds.aliyuncs.com:3306/jiasm_prd?verifyServerCertificate=false&useSSL=false&requireSSL=false&useUnicode=true&characterEncoding=UTF-8&characterSetResults=utf8
|
|
|
-#spring.datasource.username=jiasm_sync
|
|
|
-#spring.datasource.password=dvuol*v()d5@12SdG
|
|
|
-
|
|
|
-spring.datasource.druid.connection-init-sqls=set names utf8mb4
|
|
|
-spring.datasource.druid.initial-size=5
|
|
|
-spring.datasource.druid.minIdle=5
|
|
|
-spring.datasource.druid.maxActive=20
|
|
|
-### 配置获取连接等待超时的时间,单位是毫秒
|
|
|
-spring.datasource.druid.maxWait=60000
|
|
|
-### 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒
|
|
|
-spring.datasource.druid.timeBetweenEvictionRunsMillis=60000
|
|
|
-### 配置一个连接在池中最小生存的时间,单位是毫秒
|
|
|
-spring.datasource.druid.minEvictableIdleTimeMillis=300000
|
|
|
-spring.datasource.druid.validationQuery=SELECT 1 FROM DUAL
|
|
|
-spring.datasource.druid.testWhileIdle=true
|
|
|
-spring.datasource.druid.testOnBorrow=false
|
|
|
-spring.datasource.druid.testOnReturn=false
|
|
|
-### 打开PSCache,并且指定每个连接上PSCache的大小
|
|
|
-spring.datasource.druid.poolPreparedStatements=true
|
|
|
-spring.datasource.druid.maxPoolPreparedStatementPerConnectionSize=20
|
|
|
-### 配置监控统计拦截的filters,去掉后监控界面sql无法统计,'wall'用于防火墙
|
|
|
-spring.datasource.druid.filters=stat,wall
|
|
|
-### 通过connectProperties属性来打开mergeSql功能;慢SQL记录
|
|
|
-spring.datasource.druid.connectionProperties=druid.stat.mergeSql=true;druid.stat.slowSqlMillis=5000
|
|
|
-feign.client.config.default.connectTimeout=60000
|
|
|
-feign.client.config.default.readTimeout=60000
|
|
|
-
|
|
|
-### log4j配置
|
|
|
-logging.config=classpath:logback.xml
|
|
|
-# 禁控制台输出日志
|
|
|
-#logging.pattern.console=
|
|
|
-
|
|
|
-#undertow_web容器配置
|
|
|
-server.undertow.accesslog.dir=${user.dir}/logs/access
|
|
|
-server.undertow.accesslog.enabled=true
|
|
|
-server.undertow.accesslog.pattern=%h %l %u %t "%r" %s %b %D
|
|
|
-server.undertow.accesslog.prefix=access_log.
|
|
|
-server.undertow.accesslog.rotate=true
|
|
|
-server.undertow.accesslog.suffix=log
|
|
|
-server.undertow.max-http-post-size=10240000
|
|
|
-#swagger-login-account
|
|
|
-#spring.security.user.name=admin
|
|
|
-#spring.security.user.password=gree2021
|
|
|
-#mybatis-plus配置
|
|
|
-mybatis-plus.mapper-locations=classpath*:/mapper/**Mapper.xml
|
|
|
-#主键类型 0:"数据库ID自增", 1:"用户输入ID",2:"全局唯一ID (数字类型唯一ID)", 3:"全局唯一ID UUID";
|
|
|
-mybatis-plus.global-config.db-config.id-type=id_worker_str
|
|
|
-#jackson组件时区
|
|
|
-spring.jackson.date-format=yyyy-MM-dd HH:mm:ss
|
|
|
-spring.jackson.time-zone=GMT+8
|
|
|
-spring.jackson.timeZone=GMT+08:00
|
|
|
-spring.jackson.serialization.write_dates_as_timestamps=false
|
|
|
-spring.mvc.date-format=yyyy-MM-dd HH:mm:ss
|
|
|
-web.upload-path=${user.dir}/static/
|
|
|
-web.imageService=https://xxxxx
|
|
|
-
|
|
|
-#高德
|
|
|
-lbs.web.key=b772f8b0ace6bc96c04ae8e48f241e36
|
|
|
-#家盛茂创建工单
|
|
|
-jiasmorderurl=https://jiasm.zfire.top/pcapi/order/tmp/add
|
|
|
-
|
|
|
-
|
|
|
-#####################redis 单机版 start################
|
|
|
-spring.redis.port=6388
|
|
|
-spring.redis.host=121.43.111.127
|
|
|
-#redis密码
|
|
|
-spring.redis.password=private123@^
|
|
|
-spring.redis.lettuce.pool.max-active=300
|
|
|
-spring.redis.lettuce.pool.max-wait=1000ms
|
|
|
-spring.redis.lettuce.pool.max-idle=100
|
|
|
-spring.redis.lettuce.pool.min-idle=0
|
|
|
-spring.redis.timeout=100000ms
|
|
|
-
|
|
|
-#################### 阿里云配置 ######################
|
|
|
-ali.access.key.id=LTAI4GK1q4mnpCFbonMd1pji
|
|
|
-ali.access.key.secert=E5LW0V1H8HBxqjKkExIxaXUgSyex6C
|
|
|
-ali.oss.bucket.name=zfiresupply
|
|
|
-ali.oss.endpoint.ww=oss-cn-hangzhou.aliyuncs.com/
|
|
|
-ali.oss.endpoint=oss-cn-hangzhou-internal.aliyuncs.com/
|
|
|
-ali.oss.type.pic=uploadfile/
|
|
|
-ali.sms.msg.code=SMS_212320165
|
|
|
-
|
|
|
-
|
|
|
-######################## 从格力下载 ##############################
|
|
|
-masterbaseurl=https://gateway.yshcs.gree.com:9635/api/sso/autoapp-default-server-guangzhou/
|
|
|
-clientId=guangfoserver
|
|
|
-clientSecret=f81f5ac8-ad24-4212-9b2d-9cc78f982562
|
|
|
-tokenURL=https://idm.yshcs.gree.com:9635/auth/realms/fdp-shyun-test%20/protocol/openid-connect/token
|
|
|
-clientId4Pgid=guangfo
|
|
|
-clientSecret4Pgid=378ebb2e-cb56-44bc-8153-6c9c507574b8
|
|
|
-baseurl=https://gateway.yshcs.gree.com:9635/api/sso/autoapp-default-server-guangzhou/
|
|
|
-nullCols=wcsj,yhqwsmsj,qwsmjssj,fwrybwgsj,zjczsj,dqjdsj,yhyyczsj,qwsmjssj,fwrybwgsj,gmsj,czsj,fksj,xjwdsj,zjczsj,xjwdsj,bxdue,yblength,created_date,last_modified_date,ydsj,wwsl,jxid,tmjscount,bmysj,jssj,kssj
|
|
|
-######################## 上传格力总部 ##############################
|
|
|
-uploadbaseurl=https://gateway.yshcs.gree.com:9635/api/sso/autoapp-default-server-guangzhou/api/outapp/default/general
|
|
|
-gree.V3.gettoken=https://idm.yshcs.gree.com:9635/auth/realms/fdp-shyun-test/protocol/openid-connect/token
|
|
|
-gree.gz.appid=O921980101
|
|
|
-gree.fs.appid=O921980701
|
|
|
-gree.tm.appid=O932982901
|
|
|
-gree.gz.appkey=4Bx3m3fOMatutVv1u08kUdtIYZ4FsN4x
|
|
|
-gree.fs.appkey=4Bx3m3fOMatutVv1u08kUdtIYZ4FsN4x
|
|
|
-gree.client.id=guangfoserver
|
|
|
-gree.V3.client.secert=f81f5ac8-ad24-4212-9b2d-9cc78f982562
|
|
|
-baseurl4pgid=https://gateway.yshcs.gree.com:9635/api/sso/autoapp-default-server-greeshservice/
|
|
|
-
|
|
|
-######################## 上传格力总部文件 ##############################
|
|
|
-downfileurl=https://gateway.yshcs.gree.com:9635/api/pub/nts-foundation-attachmentmanager/api/v2/attachment/download?id=%s&access_token=%s
|
|
|
-sevefileurl=https://gateway.yshcs.gree.com:9635/api/sso/nts-foundation-attachmentmanager/api/v2/attachment/saveFileInfo
|
|
|
-imageurl=https://gateway.yshcs.gree.com:9635/api/sso/nts-foundation-attachmentmanager/api/v2/attachment/saveFileInfo
|
|
|
-imagesign=https://gateway.yshcs.gree.com:9635/api/sso/nts-foundation-attachmentmanager/api/v2/attachment/getSignWithWdno?wdno=%s
|
|
|
-gree.gettoken=https://idm.yshcs.gree.com:9635/auth/realms/fdp-shyun-test/protocol/openid-connect/token
|
|
|
-gree.file.client.id=guangfo
|
|
|
-gree.V3.client.file.secert=378ebb2e-cb56-44bc-8153-6c9c507574b8
|
|
|
-######################## 格力总部查询接口 ##############################
|
|
|
-clientid=guangfoserver
|
|
|
-otherurl=https://api-sms-pre-test.gree.com:9635/api/sso
|
|
|
-
|
|
|
-######################## 自建工单短信发送配置 ##############################
|
|
|
-SMSSelf_accountSID=8a216da880d67afb01814728462d130f_error
|
|
|
-SMSSelf_authToken=efe907d67dda4abd8e1351757b649682
|
|
|
-SMSSelf_softVersion=2013-12-26
|
|
|
-SMSSelf_baseURL=https://app.cloopen.com:8883
|
|
|
-SMSSelf_appId=8a216da880d67afb0181472847271316_error
|
|
|
-SMSSelf_smsType=0
|
|
|
-SMSSelf_templateId=1196771
|
|
|
-SMSSelf_marketing_templateId=2364819
|
|
|
-SMSSelf_startTime=07:00
|
|
|
-SMSSelf_endTime=24:00
|
|
|
-FAILURE_EXE_COUNT=10
|
|
|
-######################## 完工评价短信发送到格力总部 ###########################
|
|
|
-installTopicName=azdatacollection
|
|
|
-repaireTopicName=WxDtoTopic
|
|
|
-repaireMessageFinishTopicName=messageHuifangTopic
|
|
|
-repaireMessageApointmentTopicName=messageHuifangTopic
|
|
|
-
|
|
|
-######################## 派工短信发送 ###########################
|
|
|
-repaireMessageDispatchTopicName=messageTopic
|
|
|
-######################## 完工结算滞后时间单位分 ########################
|
|
|
-finishlag=5
|
|
|
-
|
|
|
-######################## 旧机回收 ##############################
|
|
|
-gree.check.barcode=https://gateway.yshcs.gree.com:9635/api/sso/autoapp-default-server-installaccounts/api/ext/azwgmx/checkBarcode
|
|
|
-gree.repair.settle.get=https://gateway.yshcs.gree.com:9635/api/sso/autoapp-default-server-greerepairaccounts/api/JsBzController/xsGetJsbzByJxxmh
|
|
|
-gree.repair.settle.do=https://gateway.yshcs.gree.com:9635/api/sso/autoapp-default-server-greerepairaccounts/api/repairsettlement/gzBatchSettlement
|
|
|
-gree.url=https://gateway.yshcs.gree.com:9635
|
|
|
-gree.api.url=${gree.url}/api/sso/autoapp-default-server-guangzhou/api/outapp/default/general
|
|
|
-gree.V3.api.url=${gree.url}/api/sso/autoapp-default-server-greeshmobile/api/yunpaigong/accessories
|
|
|
-gree.web.url=${gree.url}/api/sso/autoapp-default-server-guangzhou
|
|
|
-
|
|
|
-######################## 京东 ########################
|
|
|
-jdueurl=https://api-sms.gree.com/api/sso/autoapp-default-server-jingdongorderhandlerjob/
|
|
|
-
|
|
|
-######################## nacos ########################
|
|
|
-#spring.cloud.nacos.config.server-addr=121.43.111.127:8848
|
|
|
-#spring.cloud.nacos.config.namespace=a47fcffb-6156-4ab1-8e0b-1c5839a9f839
|
|
|
-#spring.cloud.nacos.discovery.server-addr=121.43.111.127:8848
|
|
|
-#spring.cloud.nacos.discovery.namespace=a47fcffb-6156-4ab1-8e0b-1c5839a9f839
|
|
|
-
|
|
|
-######################## 工单系统获取工单数据 ########################
|
|
|
-gdbaseurl=http://121.41.110.30:8112/
|
|
|
-
|
|
|
-######################## 同步定时任务时间隔 ########################
|
|
|
-#师傅 证件、师傅、工单子表信息
|
|
|
-workercertificate=60000
|
|
|
-workercerupload=60000
|
|
|
-detaildown=60000
|
|
|
-workercertbx=60000
|
|
|
-inbefore=60000
|
|
|
-workerrz=60000
|
|
|
-workerface=60000
|
|
|
-#安装工单下载 、入本地表
|
|
|
-installdown=2000
|
|
|
-installin=5000
|
|
|
-#维修工单下载、入本地表
|
|
|
-repairdown=5000
|
|
|
-repairin=5000
|
|
|
-#回收工单下载、获取工单的反馈明细数据、(获取对应的采集数据、附件数据、条码明细数据)、与总部进行确认下载完成、同步到业务表
|
|
|
-recycledown=60000
|
|
|
-recyclefkdown=60000
|
|
|
-recyclecjdown=60000
|
|
|
-recycleverifydown=60000
|
|
|
-recyclein=60000
|
|
|
-#以旧换新-获取所有驳回的鉴定单、修改鉴定单状态为驳回状态
|
|
|
-queryejectjdd=60000
|
|
|
-processbusiness=60000
|
|
|
-#安装家用空调、商用空调、生活电器
|
|
|
-installjy=60000
|
|
|
-installsy=60000
|
|
|
-installsh=60000
|
|
|
-#维修结算、数据预生成
|
|
|
-repairjs=60000
|
|
|
-repairone=60000
|
|
|
-#故障维修
|
|
|
-masterdownloadrate=7200000
|
|
|
-masterrate=7200000
|
|
|
-guzdm=300000
|
|
|
-#网点 佛山销售网点|售后网点、广州销售网点|售后网点
|
|
|
-netfsx=600000
|
|
|
-netfss=600000
|
|
|
-netgzx=600000
|
|
|
-netgzs=600000
|
|
|
-#网点 维修工 佛山销售|售后、广州销售|售后
|
|
|
-fsxwxg=7200000
|
|
|
-fsswxg=7200000
|
|
|
-gzxwxg=7200000
|
|
|
-gzswxg=7200000
|
|
|
-#类别大类、小类、系列、机型
|
|
|
-lbdl=300000
|
|
|
-lbxl=300000
|
|
|
-lbxlt=300000
|
|
|
-lbjx=300000
|
|
|
-gfwww=300000
|
|
|
-#销售类型
|
|
|
-azxslx=7200000
|
|
|
-#需求类别 需求大类、小类
|
|
|
-xqdl=7200000
|
|
|
-xqxl=7200000
|
|
|
-#用户属性、用户等级、信息渠道、信息来源
|
|
|
-yhsx=7200000
|
|
|
-yhdj=7200000
|
|
|
-xxqd=7200000
|
|
|
-xxly=7200000
|
|
|
-#省、市、区、镇
|
|
|
-sx=7200000
|
|
|
-ssx=7200000
|
|
|
-qx=7200000
|
|
|
-zx=7200000
|
|
|
-#安装 配件查询、家用特殊安装申请新增、新增质量信息反馈、家用特殊安装查询、家用特殊安装申请更新、安装转结算、安装转结算查询最终结果
|
|
|
-pjcx=7200000
|
|
|
-jytsazxz=7200000
|
|
|
-xzzlfk=7200000
|
|
|
-jytsazxzt=7200000
|
|
|
-jytsazxzgx=7200000
|
|
|
-azzjs=7200000
|
|
|
-azzjscx=7200000
|
|
|
-#退货 总部退换货录入、据采集、过程反馈、京东订单评价、根据工单号查询总部发送短信的详细信息、总部退换货总查询、故障机采集、总部退换货更新
|
|
|
-thlr=7200000
|
|
|
-thcj=7200000
|
|
|
-thfk=7200000
|
|
|
-jdddpj=7200000
|
|
|
-cxdxxq=7200000
|
|
|
-ththhcx=7200000
|
|
|
-thgzjcj=7200000
|
|
|
-ththhgx=7200000
|
|
|
-#维修转结算、维修转结算查询最终结果
|
|
|
-wxzjs=7200000
|
|
|
-wxzjscx=7200000
|
|
|
-#网点维修工 证件照,服务类目,位置、新增同步到本地、修改、保险、总部下载的采集图
|
|
|
-zjzxx=600000
|
|
|
-lmxx=600000
|
|
|
-wxgwz=600000
|
|
|
-wxgxg=60000
|
|
|
-wxgwzt=600000
|
|
|
-wdwxgt=600000
|
|
|
-zjzbx=600000
|
|
|
-cjfile=60000
|
|
|
-sfzjxx=300000
|
|
|
-#京东商城 预约改约、指派改派网点、作废取消、报完工、指派改派人员
|
|
|
-jdyygy=30000
|
|
|
-jdzpgpwd=30000
|
|
|
-jdzfqx=30000
|
|
|
-jdbwg=30000
|
|
|
-jdzpgpry=30000
|
|
|
-#格力商城
|
|
|
-glsc=60000
|
|
|
-#天猫商城
|
|
|
-tmsc=60000
|
|
|
-#安装工单上传 生成需要上传的数据、生成上传任务清单列表
|
|
|
-azuploadysc=2000
|
|
|
-azuploadsc=2000
|
|
|
-#维修工单上传 生成需要上传的数据、生成上传任务清单列表
|
|
|
-wxuploadysc=60000
|
|
|
-wxuploadsc=60000
|
|
|
-#以旧换新 鉴定单、生成条码、条码上传
|
|
|
-yjhxjdd=10000
|
|
|
-yjhxsctm=60000
|
|
|
-yjhxtmsc=60000
|
|
|
-#回收工单
|
|
|
-hsgdzttm=60000
|
|
|
-hsgdcjtm=60000
|
|
|
-#工单数据向上同步
|
|
|
-dataupload=60000
|
|
|
-#完工评价短信格力总部发送,自建工单联通发送,查看评价短信回复信息,自建完工评价短信联通发送,派服务人员格力发送
|
|
|
-wgmsgsend=5000
|
|
|
-zjgdmsgsend=5000
|
|
|
-qmsgsend=5000
|
|
|
-zwgmsgsend=5000
|
|
|
-pgmsgsend=5000
|
|
|
-greesms=10000
|
|
|
-SMSSelf_marketing_Rate=5000
|
|
|
-######################## 同步定时任务配置 ########################
|
|
|
-#师傅 证件、师傅、工单子表信息
|
|
|
-workercertificatec=TRUE
|
|
|
-workerceruploadc=TRUE
|
|
|
-detaildownc=TRUE
|
|
|
-workercertbxc=TRUE
|
|
|
-workerrzc=FALSE
|
|
|
-inbeforec=FALSE
|
|
|
-workerfacec=FALSE
|
|
|
-#回收工单下载、获取工单的反馈明细数据、(获取对应的采集数据、附件数据、条码明细数据)、与总部进行确认下载完成、同步到业务表
|
|
|
-recycledownc=TRUE
|
|
|
-recyclefkdownc=TRUE
|
|
|
-recyclecjdownc=TRUE
|
|
|
-recycleverifydownc=TRUE
|
|
|
-recycleinc=TRUE
|
|
|
-#以旧换新-获取所有驳回的鉴定单、修改鉴定单状态为驳回状态
|
|
|
-queryejectjddc=FALSE
|
|
|
-processbusinessc=FALSE
|
|
|
-#安装家用空调、商用空调、生活电器
|
|
|
-installjyc=TRUE
|
|
|
-installsyc=TRUE
|
|
|
-installshc=TRUE
|
|
|
-#维修结算、数据预生成
|
|
|
-repairjsc=TRUE
|
|
|
-repaironec=TRUE
|
|
|
-#故障维修
|
|
|
-masterdownloadratec=FALSE
|
|
|
-masterratec=FALSE
|
|
|
-#网点 佛山销售网点|售后网点、广州销售网点|售后网点
|
|
|
-netfsxc=FALSE
|
|
|
-netfssc=TRUE
|
|
|
-netgzxc=TRUE
|
|
|
-netgzsc=TRUE
|
|
|
-#网点维修工 佛山销售|售后、广州销售|售后
|
|
|
-fsxwxgc=FALSE
|
|
|
-fsswxgc=TRUE
|
|
|
-gzxwxgc=TRUE
|
|
|
-gzswxgc=TRUE
|
|
|
-gfwwwc=TRUE
|
|
|
-#类别大类、小类、系列、机型
|
|
|
-lbdlc=TRUE
|
|
|
-lbxlc=TRUE
|
|
|
-lbxltc=TRUE
|
|
|
-lbjxc=TRUE
|
|
|
-#销售类型
|
|
|
-azxslxc=FALSE
|
|
|
-#需求类别 需求大类、小类
|
|
|
-xqdlc=TRUE
|
|
|
-xqxlc=TRUE
|
|
|
-#用户属性、用户等级、信息渠道、信息来源
|
|
|
-yhsxc=TRUE
|
|
|
-yhdjc=TRUE
|
|
|
-xxqdc=TRUE
|
|
|
-xxlyc=TRUE
|
|
|
-#省、市、区、镇
|
|
|
-sxc=TRUE
|
|
|
-ssxc=TRUE
|
|
|
-qxc=TRUE
|
|
|
-zxc=TRUE
|
|
|
-#安装 配件查询、家用特殊安装申请新增、新增质量信息反馈、家用特殊安装查询、家用特殊安装申请更新、安装转结算、安装转结算查询最终结果
|
|
|
-pjcxc=FALSE
|
|
|
-jytsazxzc=FALSE
|
|
|
-xzzlfkc=FALSE
|
|
|
-jytsazxztc=FALSE
|
|
|
-jytsazxzgxc=FALSE
|
|
|
-azzjsc=FALSE
|
|
|
-azzjscxc=FALSE
|
|
|
-#退货 总部退换货录入、据采集、过程反馈、京东订单评价、根据工单号查询总部发送短信的详细信息、总部退换货总查询、故障机采集、总部退换货更新
|
|
|
-thlrc=FALSE
|
|
|
-thcjc=FALSE
|
|
|
-thfkc=FALSE
|
|
|
-jdddpjc=FALSE
|
|
|
-cxdxxqc=FALSE
|
|
|
-ththhcxc=FALSE
|
|
|
-thgzjcjc=FALSE
|
|
|
-ththhgxc=FALSE
|
|
|
-#维修转结算、维修转结算查询最终结果
|
|
|
-wxzjsc=FALSE
|
|
|
-wxzjscxc=FALSE
|
|
|
-#网点维修工 证件照,服务类目,位置、新增同步到本地、修改、保险、总部下载的采集图
|
|
|
-zjzxxc=TRUE
|
|
|
-lmxxc=TRUE
|
|
|
-wxgwzc=FALSE
|
|
|
-wxgxgc=FALSE
|
|
|
-wxgwztc=TRUE
|
|
|
-zjzbxc=TRUE
|
|
|
-cjfilec=TRUE
|
|
|
-sfzjxxc=TRUE
|
|
|
-zjzoc=TRUE
|
|
|
-#京东商城 预约改约、指派改派网点、作废取消、报完工、指派改派人员
|
|
|
-jdyygyc=TRUE
|
|
|
-jdzpgpwdc=TRUE
|
|
|
-jdzfqxc=TRUE
|
|
|
-jdbwgc=TRUE
|
|
|
-jdzpgpryc=TRUE
|
|
|
-#格力商城
|
|
|
-glscc=TRUE
|
|
|
-#天猫商城
|
|
|
-tmscc=TRUE
|
|
|
-#安装工单上传 生成需要上传的数据、生成上传任务清单列表
|
|
|
-azuploadyscc=TRUE
|
|
|
-azuploadscc=TRUE
|
|
|
-#维修工单上传 生成需要上传的数据、生成上传任务清单列表
|
|
|
-wxuploadyscc=TRUE
|
|
|
-wxuploadscc=TRUE
|
|
|
-#以旧换新 鉴定单、生成条码、条码上传
|
|
|
-yjhxjddc=TRUE
|
|
|
-yjhxsctmc=TRUE
|
|
|
-yjhxtmscc=TRUE
|
|
|
-#回收工单
|
|
|
-hsgdzttmc=FALSE
|
|
|
-hsgdcjtmc=FALSE
|
|
|
-#工单数据向上同步
|
|
|
-datauploadc=TRUE
|
|
|
-#安装、维修工单入本地表
|
|
|
-installinc=TRUE
|
|
|
-repairinc=TRUE
|
|
|
-#完工评价短信格力总部发送,自建工单联通发送,查看评价短信回复信息,自建完工评价短信联通发送,派服务人员格力发送
|
|
|
-wgmsgsendc=FALSE
|
|
|
-zjgdmsgsendc=FALSE
|
|
|
-qmsgsendc=FALSE
|
|
|
-zwgmsgsendc=FALSE
|
|
|
-pgmsgsendc=FALSE
|
|
|
-greesmsc=FALSE
|
|
|
-SMSSelf_marketing_Ratec=FALSE
|
|
|
-syncsmsflag=TRUE
|
|
|
-#######################安装与维修工单控制参数(从总部与从工单获取互斥)###############################
|
|
|
-#安装、维修工单总部下载
|
|
|
-installdownc=FALSE
|
|
|
-repairdownc=FALSE
|
|
|
-#安装与维修工单从工单系统下载
|
|
|
-installflag=TRUE
|
|
|
-repairflag=TRUE
|