瑞美LIS报告单查询调整根据患者类型进行查询 短信发送,消息推送等根据医院判断是业务逻辑全部抽离管理。 天助平台读取配置异常进行处理。 患者session有效期延长为60分钟debug
parent
b00b10556c
commit
ceaee24571
47 changed files with 1142 additions and 633 deletions
@ -0,0 +1,52 @@ |
||||
package com.ynxbd.common.action; |
||||
|
||||
import com.ynxbd.common.action.base.BaseAction; |
||||
import com.ynxbd.common.bean.his.HisSelfHelpInfo; |
||||
import com.ynxbd.common.dao.his.HisSelfHelpDao; |
||||
import com.ynxbd.common.result.Result; |
||||
import com.ynxbd.common.result.ResultEnum; |
||||
import lombok.extern.slf4j.Slf4j; |
||||
import org.apache.commons.lang3.ObjectUtils; |
||||
import org.apache.struts2.convention.annotation.Action; |
||||
import org.apache.struts2.convention.annotation.Namespace; |
||||
|
||||
import java.util.Arrays; |
||||
import java.util.List; |
||||
|
||||
@Slf4j |
||||
@Namespace("/selfHelp") |
||||
public class SelfHelpAction extends BaseAction { |
||||
|
||||
/** |
||||
* HIS查询自助开单 |
||||
*/ |
||||
@Action("getHisSelfHelpList") |
||||
public Result getHisSelfHelpList() { |
||||
try { |
||||
log.info("[HIS查询自助开单]"); |
||||
List<HisSelfHelpInfo> dataList = new HisSelfHelpDao().getHisSelfHelpList(); |
||||
return Result.success(dataList); |
||||
} catch (Exception e) { |
||||
return Result.error(e.getMessage()); |
||||
} |
||||
} |
||||
|
||||
/** |
||||
* HIS创建自助开单 |
||||
*/ |
||||
@Action("createHisSelfHelp") |
||||
public Result createHisSelfHelp(String patientId, String items) { |
||||
try { |
||||
log.info("[HIS创建自助开单]"); |
||||
patientId = getDecodeString(patientId); |
||||
if (ObjectUtils.isEmpty(patientId) || ObjectUtils.isEmpty(items)) { |
||||
return Result.error(ResultEnum.PARAM_IS_DEFECT); |
||||
} |
||||
List<String> itemList = Arrays.asList(items.split(",")); |
||||
Boolean isOk = new HisSelfHelpDao().createHisSelfHelp(patientId, itemList); |
||||
return Result.success(isOk); |
||||
} catch (Exception e) { |
||||
return Result.error(e); |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,19 @@ |
||||
package com.ynxbd.common.bean.his; |
||||
|
||||
import lombok.Getter; |
||||
import lombok.NoArgsConstructor; |
||||
import lombok.Setter; |
||||
import lombok.ToString; |
||||
import org.apache.poi.hpsf.Decimal; |
||||
|
||||
import java.util.List; |
||||
|
||||
@Getter |
||||
@Setter |
||||
@ToString |
||||
@NoArgsConstructor |
||||
public class HisSelfHelpInfo { |
||||
private String applyCode; |
||||
private String applyName; |
||||
private List<HisSelfHelpItem> items; |
||||
} |
@ -0,0 +1,35 @@ |
||||
package com.ynxbd.common.bean.his; |
||||
|
||||
import lombok.Getter; |
||||
import lombok.NoArgsConstructor; |
||||
import lombok.Setter; |
||||
import lombok.ToString; |
||||
|
||||
@Getter |
||||
@Setter |
||||
@ToString |
||||
@NoArgsConstructor |
||||
public class HisSelfHelpItem { |
||||
private String itemNo; |
||||
private String applicationTypeName; |
||||
private String ksCode; |
||||
private String ksName; |
||||
private String deptCode; |
||||
private String deptName; |
||||
|
||||
private String groupFlag; |
||||
private String itemCode; |
||||
private String itemName; |
||||
//
|
||||
private String price; |
||||
private String money; |
||||
private Integer count; |
||||
|
||||
public void replaceKeyName() { |
||||
this.deptCode = this.ksCode; |
||||
this.ksCode = null; |
||||
|
||||
this.deptName = this.ksName; |
||||
this.ksName = null; |
||||
} |
||||
} |
@ -0,0 +1,83 @@ |
||||
package com.ynxbd.common.dao.his; |
||||
|
||||
import com.alibaba.fastjson.JSONArray; |
||||
import com.alibaba.fastjson.JSONObject; |
||||
import com.ynxbd.common.bean.his.HisSelfHelpInfo; |
||||
import com.ynxbd.common.bean.his.HisSelfHelpItem; |
||||
import com.ynxbd.common.bean.in_hosp.InHosp; |
||||
import com.ynxbd.common.helper.his.HisEnum; |
||||
import com.ynxbd.common.helper.his.HisHelper; |
||||
import com.ynxbd.common.result.JsonResult; |
||||
import com.ynxbd.common.result.Result; |
||||
import com.ynxbd.common.result.ResultEnum; |
||||
import com.ynxbd.common.result.ServiceException; |
||||
import lombok.extern.slf4j.Slf4j; |
||||
import org.apache.commons.lang3.ObjectUtils; |
||||
|
||||
import java.util.ArrayList; |
||||
import java.util.List; |
||||
import java.util.Map; |
||||
|
||||
@Slf4j |
||||
public class HisSelfHelpDao { |
||||
|
||||
|
||||
public List<HisSelfHelpInfo> getHisSelfHelpList() throws ServiceException { |
||||
JsonResult jsonResult = HisHelper.getJsonResult(HisEnum.SH_SELF_HELP_QUERY, params -> { |
||||
|
||||
}); |
||||
if (!jsonResult.success()) { |
||||
String message = jsonResult.getMessage(); |
||||
if (message != null && message.contains("没有查询到")) { |
||||
return new ArrayList<>(); |
||||
} |
||||
throw new ServiceException(jsonResult.getMessage()); |
||||
} |
||||
|
||||
JSONArray jsonArray = jsonResult.getJsonArray("ApplicationInfos", "ApplicationInfo"); |
||||
String items; |
||||
JSONObject node; |
||||
HisSelfHelpInfo info; |
||||
List<HisSelfHelpInfo> dataList = new ArrayList<>(); |
||||
for (int i = 0; i < jsonArray.size(); i++) { |
||||
node = jsonArray.getJSONObject(i); |
||||
info = new HisSelfHelpInfo(); |
||||
info.setApplyCode(node.getString("ApplyCode")); |
||||
info.setApplyName(node.getString("ApplyName")); |
||||
|
||||
items = node.getString("Item"); |
||||
if (ObjectUtils.isEmpty(items)) { |
||||
continue; |
||||
} |
||||
List<HisSelfHelpItem> itemList = JSONArray.parseArray(items, HisSelfHelpItem.class); |
||||
for (HisSelfHelpItem item : itemList) { |
||||
item.replaceKeyName(); |
||||
} |
||||
info.setItems(itemList); |
||||
dataList.add(info); |
||||
} |
||||
return dataList; |
||||
} |
||||
|
||||
|
||||
public Boolean createHisSelfHelp(String patientId, List<String> items) throws ServiceException { |
||||
if (ObjectUtils.isEmpty(patientId)) { |
||||
throw new ServiceException(ResultEnum.PARAM_IS_DEFECT); |
||||
} |
||||
if (items.isEmpty()) { |
||||
throw new ServiceException("传递的申请单为空,禁止开单"); |
||||
} |
||||
|
||||
JsonResult jsonResult = HisHelper.getJsonResult(HisEnum.SH_SELF_HELP_CREATE, params -> { |
||||
params.put("PatientId", patientId); |
||||
params.put("ApplicationInfos", HisHelper.strListToXml("ItemNo", items)); |
||||
}); |
||||
|
||||
if (!jsonResult.success()) { |
||||
throw new ServiceException(jsonResult.getMessage()); |
||||
} |
||||
Map<String, Object> dataMap = jsonResult.getDataMap(); |
||||
log.info("[创建自助申请单]: {}", dataMap); |
||||
return true; |
||||
} |
||||
} |
@ -0,0 +1,41 @@ |
||||
package com.ynxbd.common.service; |
||||
|
||||
import com.ynxbd.common.bean.enums.HospEnum; |
||||
import com.ynxbd.common.helper.common.SoapHelper; |
||||
import com.ynxbd.common.result.JsonResult; |
||||
import com.ynxbd.common.result.JsonResultEnum; |
||||
import com.ynxbd.wx.config.MiddleOfficeConfig; |
||||
import lombok.extern.slf4j.Slf4j; |
||||
|
||||
import java.util.Map; |
||||
import java.util.Objects; |
||||
|
||||
@Slf4j |
||||
public class MiddleOfficeService { |
||||
|
||||
|
||||
public void req_his_JH0104(String soapUrl, String hisSoapMdUrl, Map<String, Object> params, String transactionCode, String result) { |
||||
try { |
||||
if (HospEnum.红河州人民医院.isHosp()) { |
||||
if (MiddleOfficeConfig.MIDDLE_OFFICE_URL != null) { //平台数据上传
|
||||
MiddleOfficeConfig.run(soapUrl, "<Request>" + SoapHelper.requestParams("HIS", params) + "</Request>", hisSoapMdUrl, transactionCode, result); |
||||
if ("7004".equals(transactionCode) && JsonResult.xmlToBean(result, JsonResultEnum.SYS_HIS) != null) { |
||||
MiddleOfficeConfig.uploadTreatNum("JH0104", Objects.requireNonNull(JsonResult.xmlToBean(result, JsonResultEnum.SYS_HIS)).getDataMapString("MZNum")); |
||||
} |
||||
} |
||||
} |
||||
} catch (Exception e) { |
||||
log.error(e.getMessage()); |
||||
} |
||||
} |
||||
|
||||
|
||||
public void reg_JH0105(String treatNum) { |
||||
if (HospEnum.红河州人民医院.isHosp()) { |
||||
if (MiddleOfficeConfig.MIDDLE_OFFICE_URL != null) { |
||||
MiddleOfficeConfig.uploadTreatNum("JH0105", treatNum); |
||||
} |
||||
} |
||||
} |
||||
|
||||
} |
@ -0,0 +1,20 @@ |
||||
package com.ynxbd.common.service; |
||||
|
||||
import com.ynxbd.common.bean.enums.HospEnum; |
||||
import com.ynxbd.common.bean.enums.MerchantEnum; |
||||
import com.ynxbd.common.bean.pay.Register; |
||||
import com.ynxbd.wx.config.MessagePushConfig; |
||||
|
||||
// 消息推送
|
||||
public class MsgPushService { |
||||
|
||||
|
||||
public void regMsgPush(MerchantEnum merchantEnum, Register reg) { |
||||
if (reg == null) { |
||||
return; |
||||
} |
||||
if (HospEnum.红河州人民医院.isHosp() && "0503".equals(reg.getDeptCode())) { |
||||
MessagePushConfig.regObsDocument(merchantEnum, reg); |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,63 @@ |
||||
package com.ynxbd.common.service; |
||||
|
||||
import com.ynxbd.common.bean.enums.HospEnum; |
||||
import com.ynxbd.common.bean.pay.Register; |
||||
import com.ynxbd.common.bean.sms.SmsRegTem; |
||||
import com.ynxbd.common.helper.common.JsonHelper; |
||||
import com.ynxbd.common.helper.common.SmsHelper; |
||||
import com.ynxbd.wx.config.WeChatConfig; |
||||
import lombok.extern.slf4j.Slf4j; |
||||
import org.apache.commons.lang3.ObjectUtils; |
||||
|
||||
@Slf4j |
||||
public class SmsService { |
||||
|
||||
public boolean sms_reg_001(Register reg) { |
||||
String tel = reg.getTel(); |
||||
String date = reg.getRegDate(); |
||||
String begTime = reg.getBegTime(); |
||||
String endTime = reg.getEndTime(); |
||||
|
||||
if (ObjectUtils.isEmpty(tel) || tel.length() != 11) { |
||||
log.info("[挂号]短信通知:tel为空或长度异常"); |
||||
return false; |
||||
} |
||||
|
||||
boolean isResult = false; |
||||
if (HospEnum.德宏州中医医院.isHosp()) { |
||||
SmsRegTem sms = new SmsRegTem(); |
||||
sms.setHosp_tel("0692-2991794"); |
||||
sms.setTime(date + " " + begTime + "-" + endTime); |
||||
sms.setAddress(reg.getAddress() == null ? "" : reg.getAddress().replace(" ", "").replace("(", "(").replace(")", ")")); |
||||
sms.setDeptName(reg.getDeptName()); |
||||
sms.setDoctorName(reg.getDoctName()); |
||||
sms.setSeq(reg.getQueueNum()); |
||||
sms.setHosp_tip("提前15分钟到医院门诊各导医服务台签到后排队候诊"); |
||||
log.info("[挂号]发送预约短信通知 sms={}, appId={}, tel-{}", JsonHelper.toJsonString(sms), WeChatConfig.APP_ID, tel); |
||||
isResult = SmsHelper.send("SMS_475980406", tel, sms); |
||||
} |
||||
return isResult; |
||||
} |
||||
|
||||
// 短信通知
|
||||
public void sms_reg_002(Register reg) { |
||||
String tel = reg.getTel(); |
||||
if (ObjectUtils.isEmpty(tel) || tel.length() != 11) { |
||||
log.info("[挂号]短信通知:tel为空或长度异常"); |
||||
return; |
||||
} |
||||
|
||||
if (HospEnum.德宏州中医医院.isHosp()) { |
||||
String template = "SMS_184121392"; |
||||
SmsRegTem sms = new SmsRegTem(); |
||||
sms.setTime(reg.getRegDate() + " " + reg.getBegTime() + "-" + reg.getEndTime()); |
||||
sms.setDeptName(reg.getDeptName()); |
||||
sms.setDoctorName(reg.getDoctName()); |
||||
sms.setAddress(reg.getAddress()); |
||||
sms.setSeq(reg.getQueueNum()); |
||||
SmsHelper.send(template, tel, sms); |
||||
} |
||||
} |
||||
|
||||
|
||||
} |
@ -0,0 +1,33 @@ |
||||
# \u533B\u4FDD\u914D\u7F6E |
||||
medical.is_dev=true |
||||
medical.is_enable=true |
||||
medical.is_auto_refund=true |
||||
|
||||
# \u53EA\u6709\u8BA2\u9605\u53F7\u7684\u533B\u9662\u6216\u53EA\u60F3\u7528\u8BA2\u9605\u53F7\u7684\u533B\u9662 \u7533\u8BF7\u4E00\u4E2A\u7A7A\u670D\u52A1\u53F7 \u7A7A\u670D\u52A1\u53F7\u914D\u7F6E\u5FAE\u4FE1\u516C\u4F17\u53F7\uFF08\u670D\u52A1\u53F7\uFF09appId |
||||
medical.md_app_id= |
||||
medical.md_app_secret= |
||||
|
||||
# \u57CE\u5E02\u7F16\u7801\uFF08\u817E\u8BAF\u63D0\u4F9B\uFF09 |
||||
medical.city_code= |
||||
# \u533B\u9662\u540D\u79F0 |
||||
medical.hospital_name= |
||||
# \u533B\u4FDD\uFF081.excel\u6587\u6863\uFF09---------------------------------------------------------------------------------- |
||||
# \u5B9A\u70B9\u533B\u836F\u673A\u6784\u7F16\u7801 |
||||
medical.org_no=H00000000000 |
||||
# \u5B9A\u70B9\u533B\u836F\u673A\u6784\u5C0F\u7A0B\u5E8F/h5\u5E94\u7528id\uFF08\u6B63\u5F0F\u73AF\u5883\uFF1A\u6E20\u9053\u7F16\u53F7\uFF09 |
||||
medical.org_app_id= |
||||
# \u5B9A\u70B9\u533B\u836F\u673A\u6784\u6E20\u9053\u8BA4\u8BC1\u7F16\u7801 |
||||
medical.org_chnl_crtf_codg= |
||||
|
||||
# \u514D\u5BC6\u6388\u6743\uFF082.\u8054\u7CFB\u817E\u8BAF-->\u90AE\u4EF6\u63D0\u4F9B\uFF08\u9700\u63D0\u4F9B\u7ED9\u817E\u8BAF\u8D1F\u8D23\u4EBA\uFF1A1.\u533B\u9662\u6B63\u5F0F\u57DF\u540D\u30012.\u516C\u4F17\u53F7appid\u30013.\u514D\u5BC6\u6388\u6743ip\u767D\u540D\u5355\uFF09\uFF09---------- |
||||
# \u5408\u4F5C\u65B9id |
||||
medical.partner_id= |
||||
# \u6D4B\u8BD5\u5BC6\u94A5 |
||||
medical.dev_partner_secret= |
||||
# \u6B63\u5F0F\u5BC6\u94A5 |
||||
medical.partner_secret= |
||||
# \u6E20\u9053\u53F7channel |
||||
medical.channel= |
||||
|
||||
# \u533B\u4FDD\u652F\u4ED8\u7B7E\u540Dkey\uFF083.\u516C\u4F17\u53F7-->\u533B\u4FDD\u652F\u4ED8\u529F\u80FD\u5F00\u901A\u540E-->\u90AE\u4EF6\u63D0\u4F9B\uFF09---------------------------------------- |
||||
medical.pay_key= |
@ -0,0 +1,29 @@ |
||||
# \u533B\u4FDD\u914D\u7F6E |
||||
medical.is_dev=true |
||||
medical.is_enable=true |
||||
medical.is_auto_refund=true |
||||
|
||||
# \u57CE\u5E02\u7F16\u7801\uFF08\u817E\u8BAF\u63D0\u4F9B\uFF09 |
||||
medical.city_code=532500 |
||||
# \u533B\u9662\u540D\u79F0 |
||||
medical.hospital_name=\u8499\u81EA\u5E02\u5987\u5E7C\u4FDD\u5065\u9662\uFF08\u8499\u81EA\u5E02\u5987\u5973\u513F\u7AE5\u533B\u9662\uFF09 |
||||
# \u533B\u4FDD\uFF081.excel\u6587\u6863\uFF09---------------------------------------------------------------------------------- |
||||
# \u5B9A\u70B9\u533B\u836F\u673A\u6784\u7F16\u7801 |
||||
medical.org_no=H53250300180 |
||||
# \u5B9A\u70B9\u533B\u836F\u673A\u6784\u5C0F\u7A0B\u5E8F/h5\u5E94\u7528id\uFF08\u6B63\u5F0F\u73AF\u5883\uFF1A\u6E20\u9053\u7F16\u53F7\uFF09 |
||||
medical.org_app_id=1GBPJCKU80043F60C80A00001CE39A66 |
||||
# \u5B9A\u70B9\u533B\u836F\u673A\u6784\u6E20\u9053\u8BA4\u8BC1\u7F16\u7801 |
||||
medical.org_chnl_crtf_codg=BqK1kMStlhVDgN2uHf4EsLK/F2LjZPYJ81nK2eYQqxtPbiPNIsvGFlw+DnMTrurn |
||||
|
||||
# \u514D\u5BC6\u6388\u6743\uFF082.\u8054\u7CFB\u817E\u8BAF-->\u90AE\u4EF6\u63D0\u4F9B\uFF08\u9700\u63D0\u4F9B\u7ED9\u817E\u8BAF\u8D1F\u8D23\u4EBA\uFF1A1.\u533B\u9662\u6B63\u5F0F\u57DF\u540D\u30012.\u516C\u4F17\u53F7appid\u30013.\u514D\u5BC6\u6388\u6743ip\u767D\u540D\u5355\uFF09\uFF09---------- |
||||
# \u5408\u4F5C\u65B9id |
||||
medical.partner_id=50008770 |
||||
# \u6D4B\u8BD5\u5BC6\u94A5 |
||||
medical.dev_partner_secret=28ed20c054de87353defbbe00085f1d6 |
||||
# \u6B63\u5F0F\u5BC6\u94A5 |
||||
medical.partner_secret=9007e37ec6da1997586d0b857554e3b4 |
||||
# \u6E20\u9053\u53F7channel |
||||
medical.channel=AAHUp9Lp_yjmcOGQjI5CvA1T |
||||
|
||||
# \u533B\u4FDD\u652F\u4ED8\u7B7E\u540Dkey\uFF083.\u516C\u4F17\u53F7-->\u533B\u4FDD\u652F\u4ED8\u529F\u80FD\u5F00\u901A\u540E-->\u90AE\u4EF6\u63D0\u4F9B\uFF09---------------------------------------- |
||||
medical.pay_key=6b8e0b6191c3baa073b1ac2ff130b990 |
@ -1,5 +0,0 @@ |
||||
medical_technology_reserve_webservice_url = |
||||
medical_technology_reserve_terminal_no = |
||||
medical_technology_reserve_test_patientId = |
||||
|
||||
medical_technology_reserve_json_url = |
@ -0,0 +1,5 @@ |
||||
# \u5929\u52A9\u9884\u7EA6\u5E73\u53F0 |
||||
tz_reserve.webservice_url=http://10.255.248.183:9003/WebService1.asmx/SlipPrint |
||||
tz_reserve.terminal_no=VX |
||||
tz_reserve.json_url=http://10.255.248.183:9001 |
||||
#tz_reserve.test_patientId= |
@ -1 +1 @@ |
||||
# \u5F00\u542F\u5904\u65B9\u9884\u7ED3\u7B97\uFF08\u7B2C2\u5F00\u5173\uFF09\uFF08\u6CE8\u610F\u8BE5\u914D\u7F6E\u9700\u8054\u7CFBhis\u5F00\u53D1\u8005\u786E\u8BA4\u652F\u6301\u624D\u80FD\u5F00\u542F\uFF0C\u5426\u5219\u5B58\u5728\u98CE\u9669\uFF01\uFF09
his.is_recipe_prepay=false
lis.url=192.168.1.185:8090
lis.unifiedEntrance=true
# \u672C\u5730
#his.url=127.0.0.1:8888
# \u6D4B\u8BD5\u73AF\u5883
# \u662F\u5426\u5F3A\u5236\u6253\u5370webservice\u7684xml\u8FD4\u56DE\u6570\u636E
his.is_log_resp=true
# \u662F\u5426\u4F20\u9012openid\u7ED9his\u63A8\u9001\u6D88\u606F
his.is_push_msg=false
#-------------------------------------------------------------
#\u672C\u5730
his.md_url=127.0.0.1:7777
his.dev_url=127.0.0.1:7777
his.url=200.200.200.60:8888
ali_code=675448357
# \u516C\u53F8\u6D4B\u8BD5
#his.url=192.168.12.10:8888
# \u7EA2\u6CB3
#his.url=10.20.10.6:8888
# \u7EA2\u6CB3\u533B\u4FDD
#his.url=10.20.10.6:8888
#his.url=192.168.12.10:8888
#his.md_url=192.168.1.128:7885
#his.dev_url=10.20.10.6:9988
# \u6C38\u80DC
#his.url=200.200.200.20:8888
# \u5FB7\u5B8F\u4E2D\u533B
#his.url=200.200.200.60:8888
# \u534E\u576A
#his.url=192.168.1.115:8888
# \u8499\u81EA\u4E2D\u533B
#his.url=192.168.0.228:8888
# \u7389\u9F99
#his.url=192.168.0.17:8888
# \u4E91\u9F99
#his.url=200.200.200.69:8888
#
#his.url=172.16.10.15:8888
# \u7984\u529D\u949F\u7231
#his.url=200.200.200.5:8888
# \u8499\u81EA\u5E02\u4EBA\u6C11\u533B\u9662
#his.url=200.200.200.174:8080
# \u5143\u8C0B
#his.url=200.200.200.29:8888
# \u5143\u8C0B\u533B\u4FDD
#his.dev_url=200.200.200.36:9999
# \u8292\u5E02
#his.url=192.168.100.8:8888
# \u7EA2\u6CB3\u5987\u5E7C\u4FDD\u5065\u9662
#his.url=192.168.1.204:8888
# \u8292\u5E02\u5987\u5E7C
#his.url=192.168.11.7:8888
#
#his.url=10.10.11.23:8888
# \u77F3\u6797
#his.url=192.168.10.10:8888
# \u5BCC\u6C11
#his.url=200.200.201.27:8888
# \u897F\u53CC\u7248\u7EB3
#his.url=10.10.11.23:8888
#wx.password=ynxbd@6910 |
||||
# \u5F00\u542F\u5904\u65B9\u9884\u7ED3\u7B97\uFF08\u7B2C2\u5F00\u5173\uFF09\uFF08\u6CE8\u610F\u8BE5\u914D\u7F6E\u9700\u8054\u7CFBhis\u5F00\u53D1\u8005\u786E\u8BA4\u652F\u6301\u624D\u80FD\u5F00\u542F\uFF0C\u5426\u5219\u5B58\u5728\u98CE\u9669\uFF01\uFF09
his.is_recipe_prepay=false
lis.url=192.168.1.185:8090
lis.unifiedEntrance=true
# \u672C\u5730
#his.url=127.0.0.1:8888
# \u6D4B\u8BD5\u73AF\u5883
ali_code=675448357
# \u662F\u5426\u5F3A\u5236\u6253\u5370webservice\u7684xml\u8FD4\u56DE\u6570\u636E
his.is_log_resp=true
# \u662F\u5426\u4F20\u9012openid\u7ED9his\u63A8\u9001\u6D88\u606F
his.is_push_msg=false
#-------------------------------------------------------------
#\u672C\u5730
his.md_url=127.0.0.1:7777
his.dev_url=127.0.0.1:7777
## \u5FB7\u5B8F\u4E2D\u533B
#his.url=200.200.200.60:8888
# \u7EA2\u6CB3\u5DDE\u533B\u9662
his.url=10.20.10.6:8888
# \u516C\u53F8\u6D4B\u8BD5
#his.url=192.168.12.39:8888
# \u516C\u53F8\u6D4B\u8BD5
#his.url=192.168.12.10:8888
# \u7EA2\u6CB3
#his.url=10.20.10.6:8888
# \u7EA2\u6CB3\u533B\u4FDD
#his.url=10.20.10.6:8888
#his.url=192.168.12.10:8888
#his.md_url=192.168.1.128:7885
#his.dev_url=10.20.10.6:9988
# \u6C38\u80DC
#his.url=200.200.200.20:8888
# \u5FB7\u5B8F\u4E2D\u533B
#his.url=200.200.200.60:8888
# \u534E\u576A
#his.url=192.168.1.115:8888
# \u8499\u81EA\u4E2D\u533B
#his.url=192.168.0.228:8888
# \u7389\u9F99
#his.url=192.168.0.17:8888
# \u4E91\u9F99
#his.url=200.200.200.69:8888
#
#his.url=172.16.10.15:8888
# \u7984\u529D\u949F\u7231
#his.url=200.200.200.5:8888
# \u8499\u81EA\u5E02\u4EBA\u6C11\u533B\u9662
#his.url=200.200.200.174:8080
# \u5143\u8C0B
#his.url=200.200.200.29:8888
# \u5143\u8C0B\u533B\u4FDD
#his.dev_url=200.200.200.36:9999
# \u8292\u5E02
#his.url=192.168.100.8:8888
# \u7EA2\u6CB3\u5987\u5E7C\u4FDD\u5065\u9662
#his.url=192.168.1.204:8888
# \u8292\u5E02\u5987\u5E7C
#his.url=192.168.11.7:8888
#
#his.url=10.10.11.23:8888
# \u77F3\u6797
#his.url=192.168.10.10:8888
# \u5BCC\u6C11
#his.url=200.200.201.27:8888
# \u897F\u53CC\u7248\u7EB3
#his.url=10.10.11.23:8888
#wx.password=ynxbd@6910 |
Loading…
Reference in new issue