diff --git a/Api/src/main/java/com/java110/api/bmo/ApiBaseBMO.java b/Api/src/main/java/com/java110/api/bmo/ApiBaseBMO.java index 1434bdca11..06aa84e2cf 100644 --- a/Api/src/main/java/com/java110/api/bmo/ApiBaseBMO.java +++ b/Api/src/main/java/com/java110/api/bmo/ApiBaseBMO.java @@ -202,6 +202,10 @@ public void freshOrderProtocol(JSONObject orders, Map headers) { if(CommonConstant.ORDER_PROCESS.equals(key)){ orders.put("orderProcess", headers.get(CommonConstant.ORDER_PROCESS)); } + + if(CommonConstant.O_ID.equals(key)){ + orders.put("oId", headers.get(CommonConstant.O_ID)); + } } } diff --git a/Api/src/main/java/com/java110/api/bmo/community/impl/CommunityBMOImpl.java b/Api/src/main/java/com/java110/api/bmo/community/impl/CommunityBMOImpl.java index 832f2127fe..99b7e5f8c4 100644 --- a/Api/src/main/java/com/java110/api/bmo/community/impl/CommunityBMOImpl.java +++ b/Api/src/main/java/com/java110/api/bmo/community/impl/CommunityBMOImpl.java @@ -270,6 +270,9 @@ public JSONObject addFeeConfigProperty(JSONObject paramInJson, DataFlowContext d businessFeeConfig.put("additionalAmount", "0.00"); businessFeeConfig.put("communityId", paramInJson.getString("communityId")); businessFeeConfig.put("configId", paramInJson.getString("configId")); + businessFeeConfig.put("billType", "004");//按天出账 + businessFeeConfig.put("paymentCd", "1200"); + businessFeeConfig.put("paymentCycle", "1");//按月出账 businessFeeConfig.put("isDefault", "T"); //计算 应收金额 business.getJSONObject(CommonConstant.HTTP_BUSINESS_DATAS).put("businessFeeConfig", businessFeeConfig); @@ -301,6 +304,9 @@ public JSONObject addFeeConfigParkingSpaceUpSell(JSONObject paramInJson, DataFlo businessFeeConfig.put("additionalAmount", "0.00"); businessFeeConfig.put("communityId", paramInJson.getString("communityId")); businessFeeConfig.put("configId", paramInJson.getString("configId")); + businessFeeConfig.put("billType", "004");//按天出账 + businessFeeConfig.put("paymentCd", "1200"); + businessFeeConfig.put("paymentCycle", "1");//按月出账 businessFeeConfig.put("isDefault", "T"); //计算 应收金额 business.getJSONObject(CommonConstant.HTTP_BUSINESS_DATAS).put("businessFeeConfig", businessFeeConfig); @@ -332,6 +338,9 @@ public JSONObject addFeeConfigParkingSpaceDownSell(JSONObject paramInJson, DataF businessFeeConfig.put("additionalAmount", "0.00"); businessFeeConfig.put("communityId", paramInJson.getString("communityId")); businessFeeConfig.put("configId", paramInJson.getString("configId")); + businessFeeConfig.put("billType", "004");//按天出账 + businessFeeConfig.put("paymentCd", "1200"); + businessFeeConfig.put("paymentCycle", "1");//按月出账 businessFeeConfig.put("isDefault", "T"); //计算 应收金额 business.getJSONObject(CommonConstant.HTTP_BUSINESS_DATAS).put("businessFeeConfig", businessFeeConfig); @@ -363,6 +372,9 @@ public JSONObject addFeeConfigParkingSpaceUpHire(JSONObject paramInJson, DataFlo businessFeeConfig.put("additionalAmount", "0.00"); businessFeeConfig.put("communityId", paramInJson.getString("communityId")); businessFeeConfig.put("configId", paramInJson.getString("configId")); + businessFeeConfig.put("billType", "004");//按天出账 + businessFeeConfig.put("paymentCd", "1200"); + businessFeeConfig.put("paymentCycle", "1");//按月出账 businessFeeConfig.put("isDefault", "T"); //计算 应收金额 business.getJSONObject(CommonConstant.HTTP_BUSINESS_DATAS).put("businessFeeConfig", businessFeeConfig); @@ -394,6 +406,9 @@ public JSONObject addFeeConfigParkingSpaceDownHire(JSONObject paramInJson, DataF businessFeeConfig.put("additionalAmount", "0.00"); businessFeeConfig.put("communityId", paramInJson.getString("communityId")); businessFeeConfig.put("configId", paramInJson.getString("configId")); + businessFeeConfig.put("billType", "004");//按天出账 + businessFeeConfig.put("paymentCd", "1200"); + businessFeeConfig.put("paymentCycle", "1");//按月出账 businessFeeConfig.put("isDefault", "T"); //计算 应收金额 business.getJSONObject(CommonConstant.HTTP_BUSINESS_DATAS).put("businessFeeConfig", businessFeeConfig); @@ -425,6 +440,9 @@ public JSONObject addFeeConfigParkingSpaceTemp(JSONObject paramInJson, DataFlowC businessFeeConfig.put("additionalAmount", "0.00"); businessFeeConfig.put("communityId", paramInJson.getString("communityId")); businessFeeConfig.put("configId", paramInJson.getString("configId")); + businessFeeConfig.put("billType", "004");//按天出账 + businessFeeConfig.put("paymentCd", "1200"); + businessFeeConfig.put("paymentCycle", "1");//按月出账 businessFeeConfig.put("isDefault", "T"); //计算 应收金额 business.getJSONObject(CommonConstant.HTTP_BUSINESS_DATAS).put("businessFeeConfig", businessFeeConfig); diff --git a/Api/src/main/java/com/java110/api/listener/fee/PayFeeConfirmListener.java b/Api/src/main/java/com/java110/api/listener/fee/PayFeeConfirmListener.java index ab14b76ca1..4d95ab08b9 100644 --- a/Api/src/main/java/com/java110/api/listener/fee/PayFeeConfirmListener.java +++ b/Api/src/main/java/com/java110/api/listener/fee/PayFeeConfirmListener.java @@ -63,7 +63,7 @@ public void soService(ServiceDataFlowEvent event) { HttpHeaders header = new HttpHeaders(); dataFlowContext.getRequestCurrentHeaders().put(CommonConstant.HTTP_ORDER_TYPE_CD, "D"); JSONArray businesses = new JSONArray(); - dataFlowContext.getRequestCurrentHeaders().put("oId", paramObj.getString("oId")); + dataFlowContext.getRequestCurrentHeaders().put(CommonConstant.O_ID, paramObj.getString("oId")); dataFlowContext.getRequestCurrentHeaders().put(CommonConstant.ORDER_PROCESS,Orders.ORDER_PROCESS_ORDER_CONFIRM_SUBMIT); ResponseEntity responseEntity = feeBMOImpl.callService(dataFlowContext, service.getServiceCode(), businesses); diff --git a/Api/src/main/java/com/java110/api/listener/unit/UpdateUnitListener.java b/Api/src/main/java/com/java110/api/listener/unit/UpdateUnitListener.java index c416d2b632..017908032a 100644 --- a/Api/src/main/java/com/java110/api/listener/unit/UpdateUnitListener.java +++ b/Api/src/main/java/com/java110/api/listener/unit/UpdateUnitListener.java @@ -72,7 +72,7 @@ public void soService(ServiceDataFlowEvent event) { JSONArray businesses = new JSONArray(); //添加单元信息 - businesses.add(unitBMOImpl.editUnit(paramObj, dataFlowContext)); + businesses.add(unitBMOImpl.editUpdateUnit(paramObj, dataFlowContext)); diff --git a/FeeService/src/main/java/com/java110/fee/listener/config/AbstractFeeConfigBusinessServiceDataFlowListener.java b/FeeService/src/main/java/com/java110/fee/listener/config/AbstractFeeConfigBusinessServiceDataFlowListener.java index ca26117091..325f15ccc1 100644 --- a/FeeService/src/main/java/com/java110/fee/listener/config/AbstractFeeConfigBusinessServiceDataFlowListener.java +++ b/FeeService/src/main/java/com/java110/fee/listener/config/AbstractFeeConfigBusinessServiceDataFlowListener.java @@ -49,6 +49,9 @@ protected void flushBusinessFeeConfigInfo(Map businessFeeConfigInfo, String stat businessFeeConfigInfo.put("startTime", businessFeeConfigInfo.get("start_time")); businessFeeConfigInfo.put("endTime", businessFeeConfigInfo.get("end_time")); businessFeeConfigInfo.put("communityId", businessFeeConfigInfo.get("community_id")); + businessFeeConfigInfo.put("paymentCd", businessFeeConfigInfo.get("payment_cd")); + businessFeeConfigInfo.put("paymentCycle", businessFeeConfigInfo.get("payment_cycle")); + businessFeeConfigInfo.put("billType", businessFeeConfigInfo.get("bill_type")); businessFeeConfigInfo.remove("bId"); businessFeeConfigInfo.put("statusCd", statusCd); } @@ -85,6 +88,9 @@ protected void autoSaveDelBusinessFeeConfig(Business business, JSONObject busine currentFeeConfigInfo.put("startTime", currentFeeConfigInfo.get("start_time")); currentFeeConfigInfo.put("endTime", currentFeeConfigInfo.get("end_time")); currentFeeConfigInfo.put("communityId", currentFeeConfigInfo.get("community_id")); + currentFeeConfigInfo.put("paymentCd", currentFeeConfigInfo.get("payment_cd")); + currentFeeConfigInfo.put("paymentCycle", currentFeeConfigInfo.get("payment_cycle")); + currentFeeConfigInfo.put("billType", currentFeeConfigInfo.get("bill_type")); currentFeeConfigInfo.put("operate", StatusConstant.OPERATE_DEL); diff --git a/java110-bean/src/main/java/com/java110/dto/fee/FeeConfigDto.java b/java110-bean/src/main/java/com/java110/dto/fee/FeeConfigDto.java index 788842738e..35dbfc1430 100644 --- a/java110-bean/src/main/java/com/java110/dto/fee/FeeConfigDto.java +++ b/java110-bean/src/main/java/com/java110/dto/fee/FeeConfigDto.java @@ -29,6 +29,14 @@ public class FeeConfigDto extends PageDto implements Serializable { private String feeTypeCdName; private String feeFlagName; + private String billType; + + private String billTypeName; + + private String paymentCd; + + private String paymentCycle; + private Date createTime; @@ -155,4 +163,37 @@ public String getFeeFlagName() { public void setFeeFlagName(String feeFlagName) { this.feeFlagName = feeFlagName; } -} + + public String getBillType() { + return billType; + } + + public void setBillType(String billType) { + this.billType = billType; + } + + public String getBillTypeName() { + return billTypeName; + } + + public void setBillTypeName(String billTypeName) { + this.billTypeName = billTypeName; + } + + + public String getPaymentCd() { + return paymentCd; + } + + public void setPaymentCd(String paymentCd) { + this.paymentCd = paymentCd; + } + + public String getPaymentCycle() { + return paymentCycle; + } + + public void setPaymentCycle(String paymentCycle) { + this.paymentCycle = paymentCycle; + } +} \ No newline at end of file diff --git a/java110-bean/src/main/java/com/java110/dto/fee/FeeDto.java b/java110-bean/src/main/java/com/java110/dto/fee/FeeDto.java index 88c70eafda..699077a217 100644 --- a/java110-bean/src/main/java/com/java110/dto/fee/FeeDto.java +++ b/java110-bean/src/main/java/com/java110/dto/fee/FeeDto.java @@ -45,6 +45,10 @@ public class FeeDto extends PageDto implements Serializable { private String computingFormula; private String isDefault; + private String paymentCd; + + private String paymentCycle; + private Date createTime; @@ -53,12 +57,11 @@ public class FeeDto extends PageDto implements Serializable { /** * 费用项开始时间 */ - private Date configStartTime; + private Date configStartTime; /** * 费用项结束时间 */ - private Date configEndTime; - + private Date configEndTime; public String getAmount() { @@ -302,4 +305,20 @@ public Date getConfigEndTime() { public void setConfigEndTime(Date configEndTime) { this.configEndTime = configEndTime; } + + public String getPaymentCd() { + return paymentCd; + } + + public void setPaymentCd(String paymentCd) { + this.paymentCd = paymentCd; + } + + public String getPaymentCycle() { + return paymentCycle; + } + + public void setPaymentCycle(String paymentCycle) { + this.paymentCycle = paymentCycle; + } } diff --git a/java110-bean/src/main/java/com/java110/vo/api/fee/ApiFeeDataVo.java b/java110-bean/src/main/java/com/java110/vo/api/fee/ApiFeeDataVo.java index da0d3fa4fd..ed90346678 100644 --- a/java110-bean/src/main/java/com/java110/vo/api/fee/ApiFeeDataVo.java +++ b/java110-bean/src/main/java/com/java110/vo/api/fee/ApiFeeDataVo.java @@ -33,6 +33,9 @@ public class ApiFeeDataVo implements Serializable { private String feePrice; private String isDefault; + private String paymentCd; + + private String paymentCycle; public String getAmount() { return amount; } @@ -176,4 +179,20 @@ public String getIsDefault() { public void setIsDefault(String isDefault) { this.isDefault = isDefault; } + + public String getPaymentCd() { + return paymentCd; + } + + public void setPaymentCd(String paymentCd) { + this.paymentCd = paymentCd; + } + + public String getPaymentCycle() { + return paymentCycle; + } + + public void setPaymentCycle(String paymentCycle) { + this.paymentCycle = paymentCycle; + } } diff --git a/java110-bean/src/main/java/com/java110/vo/api/feeConfig/ApiFeeConfigDataVo.java b/java110-bean/src/main/java/com/java110/vo/api/feeConfig/ApiFeeConfigDataVo.java index 1d32ef4990..f67bb81464 100644 --- a/java110-bean/src/main/java/com/java110/vo/api/feeConfig/ApiFeeConfigDataVo.java +++ b/java110-bean/src/main/java/com/java110/vo/api/feeConfig/ApiFeeConfigDataVo.java @@ -1,7 +1,6 @@ package com.java110.vo.api.feeConfig; import java.io.Serializable; -import java.util.Date; public class ApiFeeConfigDataVo implements Serializable { @@ -18,6 +17,15 @@ public class ApiFeeConfigDataVo implements Serializable { private String feeFlagName; private String isDefault; + private String billType; + + private String billTypeName; + + private String paymentCd; + + private String paymentCycle; + + public String getConfigId() { return configId; } @@ -113,4 +121,36 @@ public String getIsDefault() { public void setIsDefault(String isDefault) { this.isDefault = isDefault; } + + public String getBillType() { + return billType; + } + + public void setBillType(String billType) { + this.billType = billType; + } + + public String getBillTypeName() { + return billTypeName; + } + + public void setBillTypeName(String billTypeName) { + this.billTypeName = billTypeName; + } + + public String getPaymentCd() { + return paymentCd; + } + + public void setPaymentCd(String paymentCd) { + this.paymentCd = paymentCd; + } + + public String getPaymentCycle() { + return paymentCycle; + } + + public void setPaymentCycle(String paymentCycle) { + this.paymentCycle = paymentCycle; + } } diff --git a/java110-db/src/main/resources/mapper/fee/FeeConfigServiceDaoImplMapper.xml b/java110-db/src/main/resources/mapper/fee/FeeConfigServiceDaoImplMapper.xml index 7dbc58def4..aa4a36a680 100644 --- a/java110-db/src/main/resources/mapper/fee/FeeConfigServiceDaoImplMapper.xml +++ b/java110-db/src/main/resources/mapper/fee/FeeConfigServiceDaoImplMapper.xml @@ -7,9 +7,11 @@ insert into business_pay_fee_config( - fee_type_cd,computing_formula,additional_amount,square_price,is_default,operate,config_id,fee_flag,fee_name,start_time,end_time,community_id,b_id + fee_type_cd,computing_formula,additional_amount,square_price,is_default,operate,config_id,fee_flag,fee_name, + start_time,end_time,community_id,b_id,bill_type,payment_cd,payment_cycle ) values ( - #{feeTypeCd},#{computingFormula},#{additionalAmount},#{squarePrice},#{isDefault},#{operate},#{configId},#{feeFlag},#{feeName},#{startTime},#{endTime},#{communityId},#{bId} + #{feeTypeCd},#{computingFormula},#{additionalAmount},#{squarePrice},#{isDefault},#{operate},#{configId}, + #{feeFlag},#{feeName},#{startTime},#{endTime},#{communityId},#{bId},#{billType},#{paymentCd},#{paymentCycle} ) @@ -20,7 +22,8 @@ computingFormula,t.additional_amount,t.additional_amount additionalAmount,t.square_price,t.square_price squarePrice,t.is_default,t.is_default isDefault,t.operate,t.config_id,t.config_id configId,t.fee_flag,t.fee_flag feeFlag,t.fee_name,t.fee_name feeName,t.start_time,t.start_time startTime,t.end_time,t.end_time - endTime,t.community_id,t.community_id communityId,t.b_id,t.b_id bId + endTime,t.community_id,t.community_id communityId,t.b_id,t.b_id bId,t.bill_type,t.bill_type billType, + t.payment_cd,t.payment_cycle from business_pay_fee_config t where 1 =1 @@ -29,10 +32,10 @@ and t.computing_formula= #{computingFormula} - + and t.additional_amount= #{additionalAmount} - + and t.square_price= #{squarePrice} @@ -50,6 +53,9 @@ and t.fee_name= #{feeName} + + and t.bill_type= #{billType} + and t.start_time= #{startTime} @@ -69,9 +75,12 @@ insert into pay_fee_config( - fee_type_cd,computing_formula,additional_amount,status_cd,square_price,is_default,config_id,fee_flag,fee_name,start_time,end_time,community_id,b_id + fee_type_cd,computing_formula,additional_amount,status_cd,square_price,is_default,config_id,fee_flag,fee_name, + start_time,end_time,community_id,b_id,bill_type,payment_cd,payment_cycle ) select - t.fee_type_cd,t.computing_formula,t.additional_amount,'0',t.square_price,t.is_default,t.config_id,t.fee_flag,t.fee_name,t.start_time,t.end_time,t.community_id,t.b_id + t.fee_type_cd,t.computing_formula,t.additional_amount,'0',t.square_price,t.is_default,t.config_id,t.fee_flag,t.fee_name, + t.start_time,t.end_time,t.community_id, + t.b_id,t.bill_type,t.payment_cd,t.payment_cycle from business_pay_fee_config t where 1=1 and t.fee_type_cd= #{feeTypeCd} @@ -98,6 +107,9 @@ and t.fee_name= #{feeName} + + and t.bill_type= #{billType} + and t.start_time= #{startTime} @@ -121,8 +133,9 @@ statusCd,t.square_price,t.square_price squarePrice,t.is_default,t.is_default isDefault,t.config_id,t.config_id configId,t.fee_flag,t.fee_flag feeFlag,t.fee_name,t.fee_name feeName,t.start_time,t.start_time startTime,t.end_time,t.end_time endTime,t.community_id,t.community_id communityId,t.b_id,t.b_id bId, - td1.name feeTypeCdName,td2.name feeFlagName - from pay_fee_config t,t_dict td1,t_dict td2 + td1.name feeTypeCdName,td2.name feeFlagName,t.bill_type billType,t.bill_type,td3.name billTypeName, + t.payment_cd,t.payment_cycle,t.payment_cd paymentCd,t.payment_cycle paymentCycle + from pay_fee_config t,t_dict td1,t_dict td2,t_dict td3 where 1 =1 and t.fee_type_cd = td1.status_cd and td1.table_name = 'pay_fee_config' @@ -130,6 +143,9 @@ and t.fee_flag = td2.status_cd and td2.table_name = 'pay_fee_config' and td2.table_columns = 'fee_flag' + and t.bill_type = td3.status_cd + and td3.table_name = 'pay_fee_config' + and td3.table_columns = 'bill_type' and t.fee_type_cd= #{feeTypeCd} @@ -169,6 +185,12 @@ and t.b_id= #{bId} + + and t.payment_cd= #{paymentCd} + + + and t.payment_cycle= #{paymentCycle} + order by t.create_time desc limit #{page}, #{row} @@ -195,6 +217,12 @@ , t.square_price= #{squarePrice} + + , t.payment_cd= #{paymentCd} + + + , t.payment_cycle= #{paymentCycle} + , t.is_default= #{isDefault} @@ -204,6 +232,9 @@ , t.fee_name= #{feeName} + + , t.bill_type= #{billType} + , t.start_time= #{startTime} @@ -226,7 +257,7 @@ - + \ No newline at end of file diff --git a/java110-db/src/main/resources/mapper/fee/FeeServiceDaoImplMapper.xml b/java110-db/src/main/resources/mapper/fee/FeeServiceDaoImplMapper.xml index fd0d7ad39f..70dfd619ef 100644 --- a/java110-db/src/main/resources/mapper/fee/FeeServiceDaoImplMapper.xml +++ b/java110-db/src/main/resources/mapper/fee/FeeServiceDaoImplMapper.xml @@ -20,7 +20,8 @@ select t.amount,t.operate,t.income_obj_id,t.income_obj_id incomeObjId,t.fee_type_cd,t.fee_type_cd feeTypeCd,t.start_time,t.start_time startTime,t.end_time,t.end_time endTime,t.community_id,t.community_id communityId,t.b_id,t.b_id bId,t.fee_id,t.fee_id feeId,t.user_id,t.user_id userId,t.payer_obj_id,t.payer_obj_id - payerObjId,t.fee_flag,t.fee_flag feeFlag,t.state,t.config_id,t.config_id configId,t.payer_obj_type,t.payer_obj_type payerObjType + payerObjId,t.fee_flag,t.fee_flag feeFlag,t.state,t.config_id,t.config_id + configId,t.payer_obj_type,t.payer_obj_type payerObjType from business_pay_fee t where 1 =1 @@ -135,8 +136,10 @@ endTime,t.community_id,t.community_id communityId,t.b_id,t.b_id bId,t.fee_id,t.fee_id feeId,t.user_id,t.user_id userId,t.payer_obj_id,t.payer_obj_id payerObjId,pfc.square_price squarePrice,pfc.additional_amount additionalAmount,t.fee_flag,t.fee_flag feeFlag,t.state,t.config_id,t.config_id configId, - pfc.fee_name feeName,td1.name feeTypeCdName,td2.name stateName,td3.name feeFlagName,pfc.computing_formula computingFormula, - t.payer_obj_type,t.payer_obj_type payerObjType,pfc.is_default isDefault,pfc.start_time configStartTime,pfc.end_time configEndTime + pfc.fee_name feeName,td1.name feeTypeCdName,td2.name stateName,td3.name feeFlagName,pfc.computing_formula + computingFormula, + t.payer_obj_type,t.payer_obj_type payerObjType,pfc.is_default isDefault,pfc.start_time + configStartTime,pfc.end_time configEndTime,pfc.payment_cd paymentCd,pfc.payment_cycle paymentCycle from pay_fee t,pay_fee_config pfc,t_dict td1,t_dict td2,t_dict td3 where 1 =1 and t.fee_type_cd = pfc.fee_type_cd @@ -311,7 +314,7 @@ and t.end_time < #{arrearsEndTime} - and t.end_time > #{noArrearsEndTime} + and t.end_time > #{noArrearsEndTime} and t.community_id= #{communityId} @@ -348,7 +351,199 @@ and t.payer_obj_type = #{payerObjType} + + + + + + + + + + + + + + - + + + INSERT INTO bill_owe_fee + (`owe_id`, `bill_id`, `fee_id`, `bill_amount_owed`, `amount_owed`, `fee_end_time`, `owner_id`, `owner_name`, + `owner_tel`, `payer_obj_name`, `payer_obj_type`, `community_id`, `state`) + VALUES (#{oweId}, #{billId}, #{feeId}, #{billAmountOwed}, #{amountOwed}, #{feeEndTime}, #{ownerId}, + #{ownerName}, + #{ownerTel}, #{payerObjName}, #{payerObjType}, #{communityId}, #{state}) + + + + INSERT INTO bill (`bill_id`, `bill_name`, `receivable`, `receipts`, `bill_time`, `community_id`, `config_id`, + `remark`, `cur_bill`, `cur_receivable`) + VALUES (#{billId}, #{billName}, #{receivable}, #{receipts}, #{billTime}, #{communityId}, #{configId}, + #{remark}, #{curBill}, #{curReceivable}) + + + + update bill set cur_bill= 'F' where config_id = #{configId} + + + + \ No newline at end of file diff --git a/java110-utils/src/main/java/com/java110/utils/constant/CommonConstant.java b/java110-utils/src/main/java/com/java110/utils/constant/CommonConstant.java index 3b76c6f537..8cf0bd8c69 100644 --- a/java110-utils/src/main/java/com/java110/utils/constant/CommonConstant.java +++ b/java110-utils/src/main/java/com/java110/utils/constant/CommonConstant.java @@ -148,7 +148,7 @@ public class CommonConstant { public final static String HTTP_ORDER_TYPE_CD = "order_type_cd"; public final static String HTTP_USER_ID = "user_id"; public final static String ORDER_PROCESS = "order_process"; - + public final static String O_ID = "o_id"; public final static String HTTP_METHOD_POST = "POST"; public final static String HTTP_METHOD_PUT = "PUT";