gongfuzhu 1 rok temu
rodzic
commit
602ac307fb
26 zmienionych plików z 2435 dodań i 2671 usunięć
  1. 30 31
      SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/request/BaseOpenRequest.java
  2. 58 58
      SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/request/NotificationCheckUserRequest.java
  3. 366 366
      SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/request/NotificationOrderInfoRequest.java
  4. 38 273
      SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/request/NotificationPushStoreInfoRequest.java
  5. 86 86
      SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/request/NotificationReceiveRefundRequest.java
  6. 166 166
      SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/request/QueryApiOrderListRequest.java
  7. 73 73
      SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/request/QueryApiStoreListRequest.java
  8. 128 128
      SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/request/QueryEnergyUrlRequest.java
  9. 84 84
      SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/request/QueryGetPromotionRequest.java
  10. 44 44
      SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/request/QueryOrderInfoRequest.java
  11. 135 135
      SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/request/QueryOrderListRequest.java
  12. 59 59
      SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/request/QueryStoreListRequest.java
  13. 146 146
      SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/request/QueryStorePriceRequest.java
  14. 41 41
      SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/request/QueryTokenRequest.java
  15. 70 70
      SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/request/QueryUserAuthRequest.java
  16. 128 128
      SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/request/QueryUserPromotionListRequest.java
  17. 21 21
      SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/response/QueryApiStoreListResponse.java
  18. 35 35
      SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/response/QueryApiStorePriceV2Response.java
  19. 30 30
      SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/response/QueryEnergyUrlResponse.java
  20. 357 357
      SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/response/QueryOrderInfoResponse.java
  21. 72 72
      SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/response/QueryOrderListResponse.java
  22. 72 72
      SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/response/QueryStoreListResponse.java
  23. 34 34
      SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/response/QueryStorePriceResponse.java
  24. 85 85
      SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/response/QueryUserPromotionListResponse.java
  25. 43 43
      SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/response/RefundResponse.java
  26. 34 34
      SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/response/UserAuthResponse.java

+ 30 - 31
SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/request/BaseOpenRequest.java

@@ -1,31 +1,30 @@
-/*    */ package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.request;
-/*    */ 
-/*    */ import com.xiaoju.open.oil.commons.OpenRequest;
-/*    */ import java.io.Serializable;
-/*    */ import java.lang.reflect.ParameterizedType;
-/*    */ import java.lang.reflect.Type;
-/*    */ import java.util.Map;
-/*    */ import java.util.concurrent.ConcurrentHashMap;
-/*    */ 
-/*    */ public abstract class BaseOpenRequest<T>
-/*    */   implements OpenRequest<T>, Serializable
-/*    */ {
-/* 13 */   private static final Map<String, Type> CLASS_MAP = new ConcurrentHashMap<>();
-/*    */   
-/*    */   public Type getResponseClass() {
-/* 16 */     return CLASS_MAP.computeIfAbsent(getApiMethodName(), k -> {
-/*    */           Type interfaceType = getClass().getGenericSuperclass();
-/*    */           if (interfaceType instanceof ParameterizedType) {
-/*    */             ParameterizedType parameterizedType = (ParameterizedType)interfaceType;
-/*    */             return parameterizedType.getActualTypeArguments()[0];
-/*    */           } 
-/*    */           return null;
-/*    */         });
-/*    */   }
-/*    */ }
-
-
-/* Location:              E:\chendu\MicroService\application\SpringBatchService\SpringBatchServiceServer\src\main\resources\lib\oil-sdk-jar-1.0.16.jar!\com\xiaoju\open\oil\interfaces\request\BaseOpenRequest.class
- * Java compiler version: 8 (52.0)
- * JD-Core Version:       1.1.3
- */
+///*    */ package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.request;
+///*    */
+///*    */ import java.io.Serializable;
+///*    */ import java.lang.reflect.ParameterizedType;
+///*    */ import java.lang.reflect.Type;
+///*    */ import java.util.Map;
+///*    */ import java.util.concurrent.ConcurrentHashMap;
+///*    */
+///*    */ public abstract class BaseOpenRequest<T>
+///*    */   implements OpenRequest<T>, Serializable
+///*    */ {
+///* 13 */   private static final Map<String, Type> CLASS_MAP = new ConcurrentHashMap<>();
+///*    */
+///*    */   public Type getResponseClass() {
+///* 16 */     return CLASS_MAP.computeIfAbsent(getApiMethodName(), k -> {
+///*    */           Type interfaceType = getClass().getGenericSuperclass();
+///*    */           if (interfaceType instanceof ParameterizedType) {
+///*    */             ParameterizedType parameterizedType = (ParameterizedType)interfaceType;
+///*    */             return parameterizedType.getActualTypeArguments()[0];
+///*    */           }
+///*    */           return null;
+///*    */         });
+///*    */   }
+///*    */ }
+//
+//
+///* Location:              E:\chendu\MicroService\application\SpringBatchService\SpringBatchServiceServer\src\main\resources\lib\oil-sdk-jar-1.0.16.jar!\com\xiaoju\open\oil\interfaces\request\BaseOpenRequest.class
+// * Java compiler version: 8 (52.0)
+// * JD-Core Version:       1.1.3
+// */

+ 58 - 58
SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/request/NotificationCheckUserRequest.java

@@ -1,58 +1,58 @@
-/*    */ package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.request;
-/*    */ 
-/*    */ import com.xiaoju.open.oil.commons.exception.ApiRuleException;
-/*    */ import com.xiaoju.open.oil.commons.utils.ParamCheckUtils;
-/*    */ import com.xiaoju.open.oil.interfaces.request.BaseOpenRequest;
-import com.xiaoju.open.oil.interfaces.response.NotificationCheckUserInfoResponse;
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ public class NotificationCheckUserRequest
-/*    */   extends BaseOpenRequest<NotificationCheckUserInfoResponse>
-/*    */ {
-/*    */   private String mobile;
-/*    */   private String outUserId;
-/*    */   
-/*    */   public String getApiMethodName() {
-/* 27 */     return "/notifyCheckUserInfo";
-/*    */   }
-/*    */ 
-/*    */   
-/*    */   public void check() throws ApiRuleException {
-/* 32 */     ParamCheckUtils.checkNotEmpty(this.mobile, "mobile");
-/* 33 */     ParamCheckUtils.checkNotEmpty(this.outUserId, "outUserId");
-/*    */   }
-/*    */   
-/*    */   public String getMobile() {
-/* 37 */     return this.mobile;
-/*    */   }
-/*    */   
-/*    */   public void setMobile(String mobile) {
-/* 41 */     this.mobile = mobile;
-/*    */   }
-/*    */   
-/*    */   public String getOutUserId() {
-/* 45 */     return this.outUserId;
-/*    */   }
-/*    */   
-/*    */   public void setOutUserId(String outUserId) {
-/* 49 */     this.outUserId = outUserId;
-/*    */   }
-/*    */ }
-
-
-/* Location:              E:\chendu\MicroService\application\SpringBatchService\SpringBatchServiceServer\src\main\resources\lib\oil-sdk-jar-1.0.16.jar!\com\xiaoju\open\oil\interfaces\request\NotificationCheckUserRequest.class
- * Java compiler version: 8 (52.0)
- * JD-Core Version:       1.1.3
- */
+///*    */ package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.request;
+///*    */
+///*    */ import com.xiaoju.open.oil.commons.exception.ApiRuleException;
+///*    */ import com.xiaoju.open.oil.commons.utils.ParamCheckUtils;
+///*    */ import com.xiaoju.open.oil.interfaces.request.BaseOpenRequest;
+//import com.xiaoju.open.oil.interfaces.response.NotificationCheckUserInfoResponse;
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */ public class NotificationCheckUserRequest
+///*    */   extends BaseOpenRequest<NotificationCheckUserInfoResponse>
+///*    */ {
+///*    */   private String mobile;
+///*    */   private String outUserId;
+///*    */
+///*    */   public String getApiMethodName() {
+///* 27 */     return "/notifyCheckUserInfo";
+///*    */   }
+///*    */
+///*    */
+///*    */   public void check() throws ApiRuleException {
+///* 32 */     ParamCheckUtils.checkNotEmpty(this.mobile, "mobile");
+///* 33 */     ParamCheckUtils.checkNotEmpty(this.outUserId, "outUserId");
+///*    */   }
+///*    */
+///*    */   public String getMobile() {
+///* 37 */     return this.mobile;
+///*    */   }
+///*    */
+///*    */   public void setMobile(String mobile) {
+///* 41 */     this.mobile = mobile;
+///*    */   }
+///*    */
+///*    */   public String getOutUserId() {
+///* 45 */     return this.outUserId;
+///*    */   }
+///*    */
+///*    */   public void setOutUserId(String outUserId) {
+///* 49 */     this.outUserId = outUserId;
+///*    */   }
+///*    */ }
+//
+//
+///* Location:              E:\chendu\MicroService\application\SpringBatchService\SpringBatchServiceServer\src\main\resources\lib\oil-sdk-jar-1.0.16.jar!\com\xiaoju\open\oil\interfaces\request\NotificationCheckUserRequest.class
+// * Java compiler version: 8 (52.0)
+// * JD-Core Version:       1.1.3
+// */

+ 366 - 366
SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/request/NotificationOrderInfoRequest.java

@@ -1,366 +1,366 @@
-/*     */ package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.request;
-/*     */ 
-/*     */ import com.xiaoju.open.oil.commons.exception.ApiRuleException;
-/*     */ import com.xiaoju.open.oil.commons.utils.ParamCheckUtils;
-/*     */ import com.xiaoju.open.oil.interfaces.domain.PayCodeInfo;
-/*     */ import com.xiaoju.open.oil.interfaces.request.BaseOpenRequest;
-import com.xiaoju.open.oil.interfaces.response.NotificationOrderInfoResponse;
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ public class NotificationOrderInfoRequest
-/*     */   extends BaseOpenRequest<NotificationOrderInfoResponse>
-/*     */ {
-/*     */   private String outUserId;
-/*     */   private String orderId;
-/*     */   private String cityId;
-/*     */   private String cityName;
-/*     */   private String storeId;
-/*     */   private String storeName;
-/*     */   private String itemName;
-/*     */   private String gunNo;
-/*     */   private Float quantity;
-/*     */   private Integer totalMoney;
-/*     */   private Integer realMoney;
-/*     */   private Integer serviceFee;
-/*     */   private Integer payStatus;
-/*     */   private String payTime;
-/*     */   private Integer refundStatus;
-/*     */   private String refundTime;
-/*     */   private Integer sourceCode;
-/*     */   private String outOrderId;
-/*     */   private Integer orderStatus;
-/*     */   private String orderTime;
-/*     */   private Integer payType;
-/*     */   private String extraForOpen;
-/*     */   private Integer unitPrice;
-/*     */   private String openInfo;
-/*     */   private PayCodeInfo payCodeDTO;
-/*     */   private Integer billingType;
-/*     */   
-/*     */   public String getApiMethodName() {
-/* 137 */     return "/notifyOrderInfo";
-/*     */   }
-/*     */ 
-/*     */   
-/*     */   public void check() throws ApiRuleException {
-/* 142 */     ParamCheckUtils.checkNotEmpty(this.storeId, "storeId");
-/* 143 */     ParamCheckUtils.checkNotEmpty(this.orderId, "orderId");
-/* 144 */     ParamCheckUtils.checkNotEmpty(this.outUserId, "outUserId");
-/* 145 */     ParamCheckUtils.checkNotEmpty(this.orderStatus, "orderStatus");
-/* 146 */     ParamCheckUtils.checkNotEmpty(this.itemName, "itemName");
-/* 147 */     ParamCheckUtils.checkNotEmpty(this.totalMoney, "totalMoney");
-/* 148 */     ParamCheckUtils.checkNotEmpty(this.realMoney, "realMoney");
-/* 149 */     ParamCheckUtils.checkNotEmpty(this.gunNo, "gunNo");
-/*     */   }
-/*     */   
-/*     */   public String getOutUserId() {
-/* 153 */     return this.outUserId;
-/*     */   }
-/*     */   
-/*     */   public void setOutUserId(String outUserId) {
-/* 157 */     this.outUserId = outUserId;
-/*     */   }
-/*     */   
-/*     */   public String getOrderId() {
-/* 161 */     return this.orderId;
-/*     */   }
-/*     */   
-/*     */   public void setOrderId(String orderId) {
-/* 165 */     this.orderId = orderId;
-/*     */   }
-/*     */   
-/*     */   public String getCityId() {
-/* 169 */     return this.cityId;
-/*     */   }
-/*     */   
-/*     */   public void setCityId(String cityId) {
-/* 173 */     this.cityId = cityId;
-/*     */   }
-/*     */   
-/*     */   public String getCityName() {
-/* 177 */     return this.cityName;
-/*     */   }
-/*     */   
-/*     */   public void setCityName(String cityName) {
-/* 181 */     this.cityName = cityName;
-/*     */   }
-/*     */   
-/*     */   public String getStoreId() {
-/* 185 */     return this.storeId;
-/*     */   }
-/*     */   
-/*     */   public void setStoreId(String storeId) {
-/* 189 */     this.storeId = storeId;
-/*     */   }
-/*     */   
-/*     */   public String getStoreName() {
-/* 193 */     return this.storeName;
-/*     */   }
-/*     */   
-/*     */   public void setStoreName(String storeName) {
-/* 197 */     this.storeName = storeName;
-/*     */   }
-/*     */   
-/*     */   public String getItemName() {
-/* 201 */     return this.itemName;
-/*     */   }
-/*     */   
-/*     */   public void setItemName(String itemName) {
-/* 205 */     this.itemName = itemName;
-/*     */   }
-/*     */   
-/*     */   public String getGunNo() {
-/* 209 */     return this.gunNo;
-/*     */   }
-/*     */   
-/*     */   public void setGunNo(String gunNo) {
-/* 213 */     this.gunNo = gunNo;
-/*     */   }
-/*     */   
-/*     */   public Float getQuantity() {
-/* 217 */     return this.quantity;
-/*     */   }
-/*     */   
-/*     */   public void setQuantity(Float quantity) {
-/* 221 */     this.quantity = quantity;
-/*     */   }
-/*     */   
-/*     */   public Integer getTotalMoney() {
-/* 225 */     return this.totalMoney;
-/*     */   }
-/*     */   
-/*     */   public void setTotalMoney(Integer totalMoney) {
-/* 229 */     this.totalMoney = totalMoney;
-/*     */   }
-/*     */   
-/*     */   public Integer getRealMoney() {
-/* 233 */     return this.realMoney;
-/*     */   }
-/*     */   
-/*     */   public void setRealMoney(Integer realMoney) {
-/* 237 */     this.realMoney = realMoney;
-/*     */   }
-/*     */   
-/*     */   public Integer getServiceFee() {
-/* 241 */     return this.serviceFee;
-/*     */   }
-/*     */   
-/*     */   public void setServiceFee(Integer serviceFee) {
-/* 245 */     this.serviceFee = serviceFee;
-/*     */   }
-/*     */   
-/*     */   public Integer getPayStatus() {
-/* 249 */     return this.payStatus;
-/*     */   }
-/*     */   
-/*     */   public void setPayStatus(Integer payStatus) {
-/* 253 */     this.payStatus = payStatus;
-/*     */   }
-/*     */   
-/*     */   public String getPayTime() {
-/* 257 */     return this.payTime;
-/*     */   }
-/*     */   
-/*     */   public void setPayTime(String payTime) {
-/* 261 */     this.payTime = payTime;
-/*     */   }
-/*     */   
-/*     */   public Integer getRefundStatus() {
-/* 265 */     return this.refundStatus;
-/*     */   }
-/*     */   
-/*     */   public void setRefundStatus(Integer refundStatus) {
-/* 269 */     this.refundStatus = refundStatus;
-/*     */   }
-/*     */   
-/*     */   public String getRefundTime() {
-/* 273 */     return this.refundTime;
-/*     */   }
-/*     */   
-/*     */   public void setRefundTime(String refundTime) {
-/* 277 */     this.refundTime = refundTime;
-/*     */   }
-/*     */   
-/*     */   public Integer getSourceCode() {
-/* 281 */     return this.sourceCode;
-/*     */   }
-/*     */   
-/*     */   public void setSourceCode(Integer sourceCode) {
-/* 285 */     this.sourceCode = sourceCode;
-/*     */   }
-/*     */   
-/*     */   public String getOutOrderId() {
-/* 289 */     return this.outOrderId;
-/*     */   }
-/*     */   
-/*     */   public void setOutOrderId(String outOrderId) {
-/* 293 */     this.outOrderId = outOrderId;
-/*     */   }
-/*     */   
-/*     */   public Integer getOrderStatus() {
-/* 297 */     return this.orderStatus;
-/*     */   }
-/*     */   
-/*     */   public void setOrderStatus(Integer orderStatus) {
-/* 301 */     this.orderStatus = orderStatus;
-/*     */   }
-/*     */   
-/*     */   public String getOrderTime() {
-/* 305 */     return this.orderTime;
-/*     */   }
-/*     */   
-/*     */   public void setOrderTime(String orderTime) {
-/* 309 */     this.orderTime = orderTime;
-/*     */   }
-/*     */   
-/*     */   public Integer getPayType() {
-/* 313 */     return this.payType;
-/*     */   }
-/*     */   
-/*     */   public void setPayType(Integer payType) {
-/* 317 */     this.payType = payType;
-/*     */   }
-/*     */   
-/*     */   public String getExtraForOpen() {
-/* 321 */     return this.extraForOpen;
-/*     */   }
-/*     */   
-/*     */   public void setExtraForOpen(String extraForOpen) {
-/* 325 */     this.extraForOpen = extraForOpen;
-/*     */   }
-/*     */   
-/*     */   public Integer getUnitPrice() {
-/* 329 */     return this.unitPrice;
-/*     */   }
-/*     */   
-/*     */   public void setUnitPrice(Integer unitPrice) {
-/* 333 */     this.unitPrice = unitPrice;
-/*     */   }
-/*     */   
-/*     */   public String getOpenInfo() {
-/* 337 */     return this.openInfo;
-/*     */   }
-/*     */   
-/*     */   public void setOpenInfo(String openInfo) {
-/* 341 */     this.openInfo = openInfo;
-/*     */   }
-/*     */   
-/*     */   public PayCodeInfo getPayCodeDTO() {
-/* 345 */     return this.payCodeDTO;
-/*     */   }
-/*     */   
-/*     */   public void setPayCodeDTO(PayCodeInfo payCodeDTO) {
-/* 349 */     this.payCodeDTO = payCodeDTO;
-/*     */   }
-/*     */   
-/*     */   public Integer getBillingType() {
-/* 353 */     return this.billingType;
-/*     */   }
-/*     */   
-/*     */   public void setBillingType(Integer billingType) {
-/* 357 */     this.billingType = billingType;
-/*     */   }
-/*     */ }
-
-
-/* Location:              E:\chendu\MicroService\application\SpringBatchService\SpringBatchServiceServer\src\main\resources\lib\oil-sdk-jar-1.0.16.jar!\com\xiaoju\open\oil\interfaces\request\NotificationOrderInfoRequest.class
- * Java compiler version: 8 (52.0)
- * JD-Core Version:       1.1.3
- */
+///*     */ package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.request;
+///*     */
+///*     */ import com.xiaoju.open.oil.commons.exception.ApiRuleException;
+///*     */ import com.xiaoju.open.oil.commons.utils.ParamCheckUtils;
+///*     */ import com.xiaoju.open.oil.interfaces.domain.PayCodeInfo;
+///*     */ import com.xiaoju.open.oil.interfaces.request.BaseOpenRequest;
+//import com.xiaoju.open.oil.interfaces.response.NotificationOrderInfoResponse;
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */ public class NotificationOrderInfoRequest
+///*     */   extends BaseOpenRequest<NotificationOrderInfoResponse>
+///*     */ {
+///*     */   private String outUserId;
+///*     */   private String orderId;
+///*     */   private String cityId;
+///*     */   private String cityName;
+///*     */   private String storeId;
+///*     */   private String storeName;
+///*     */   private String itemName;
+///*     */   private String gunNo;
+///*     */   private Float quantity;
+///*     */   private Integer totalMoney;
+///*     */   private Integer realMoney;
+///*     */   private Integer serviceFee;
+///*     */   private Integer payStatus;
+///*     */   private String payTime;
+///*     */   private Integer refundStatus;
+///*     */   private String refundTime;
+///*     */   private Integer sourceCode;
+///*     */   private String outOrderId;
+///*     */   private Integer orderStatus;
+///*     */   private String orderTime;
+///*     */   private Integer payType;
+///*     */   private String extraForOpen;
+///*     */   private Integer unitPrice;
+///*     */   private String openInfo;
+///*     */   private PayCodeInfo payCodeDTO;
+///*     */   private Integer billingType;
+///*     */
+///*     */   public String getApiMethodName() {
+///* 137 */     return "/notifyOrderInfo";
+///*     */   }
+///*     */
+///*     */
+///*     */   public void check() throws ApiRuleException {
+///* 142 */     ParamCheckUtils.checkNotEmpty(this.storeId, "storeId");
+///* 143 */     ParamCheckUtils.checkNotEmpty(this.orderId, "orderId");
+///* 144 */     ParamCheckUtils.checkNotEmpty(this.outUserId, "outUserId");
+///* 145 */     ParamCheckUtils.checkNotEmpty(this.orderStatus, "orderStatus");
+///* 146 */     ParamCheckUtils.checkNotEmpty(this.itemName, "itemName");
+///* 147 */     ParamCheckUtils.checkNotEmpty(this.totalMoney, "totalMoney");
+///* 148 */     ParamCheckUtils.checkNotEmpty(this.realMoney, "realMoney");
+///* 149 */     ParamCheckUtils.checkNotEmpty(this.gunNo, "gunNo");
+///*     */   }
+///*     */
+///*     */   public String getOutUserId() {
+///* 153 */     return this.outUserId;
+///*     */   }
+///*     */
+///*     */   public void setOutUserId(String outUserId) {
+///* 157 */     this.outUserId = outUserId;
+///*     */   }
+///*     */
+///*     */   public String getOrderId() {
+///* 161 */     return this.orderId;
+///*     */   }
+///*     */
+///*     */   public void setOrderId(String orderId) {
+///* 165 */     this.orderId = orderId;
+///*     */   }
+///*     */
+///*     */   public String getCityId() {
+///* 169 */     return this.cityId;
+///*     */   }
+///*     */
+///*     */   public void setCityId(String cityId) {
+///* 173 */     this.cityId = cityId;
+///*     */   }
+///*     */
+///*     */   public String getCityName() {
+///* 177 */     return this.cityName;
+///*     */   }
+///*     */
+///*     */   public void setCityName(String cityName) {
+///* 181 */     this.cityName = cityName;
+///*     */   }
+///*     */
+///*     */   public String getStoreId() {
+///* 185 */     return this.storeId;
+///*     */   }
+///*     */
+///*     */   public void setStoreId(String storeId) {
+///* 189 */     this.storeId = storeId;
+///*     */   }
+///*     */
+///*     */   public String getStoreName() {
+///* 193 */     return this.storeName;
+///*     */   }
+///*     */
+///*     */   public void setStoreName(String storeName) {
+///* 197 */     this.storeName = storeName;
+///*     */   }
+///*     */
+///*     */   public String getItemName() {
+///* 201 */     return this.itemName;
+///*     */   }
+///*     */
+///*     */   public void setItemName(String itemName) {
+///* 205 */     this.itemName = itemName;
+///*     */   }
+///*     */
+///*     */   public String getGunNo() {
+///* 209 */     return this.gunNo;
+///*     */   }
+///*     */
+///*     */   public void setGunNo(String gunNo) {
+///* 213 */     this.gunNo = gunNo;
+///*     */   }
+///*     */
+///*     */   public Float getQuantity() {
+///* 217 */     return this.quantity;
+///*     */   }
+///*     */
+///*     */   public void setQuantity(Float quantity) {
+///* 221 */     this.quantity = quantity;
+///*     */   }
+///*     */
+///*     */   public Integer getTotalMoney() {
+///* 225 */     return this.totalMoney;
+///*     */   }
+///*     */
+///*     */   public void setTotalMoney(Integer totalMoney) {
+///* 229 */     this.totalMoney = totalMoney;
+///*     */   }
+///*     */
+///*     */   public Integer getRealMoney() {
+///* 233 */     return this.realMoney;
+///*     */   }
+///*     */
+///*     */   public void setRealMoney(Integer realMoney) {
+///* 237 */     this.realMoney = realMoney;
+///*     */   }
+///*     */
+///*     */   public Integer getServiceFee() {
+///* 241 */     return this.serviceFee;
+///*     */   }
+///*     */
+///*     */   public void setServiceFee(Integer serviceFee) {
+///* 245 */     this.serviceFee = serviceFee;
+///*     */   }
+///*     */
+///*     */   public Integer getPayStatus() {
+///* 249 */     return this.payStatus;
+///*     */   }
+///*     */
+///*     */   public void setPayStatus(Integer payStatus) {
+///* 253 */     this.payStatus = payStatus;
+///*     */   }
+///*     */
+///*     */   public String getPayTime() {
+///* 257 */     return this.payTime;
+///*     */   }
+///*     */
+///*     */   public void setPayTime(String payTime) {
+///* 261 */     this.payTime = payTime;
+///*     */   }
+///*     */
+///*     */   public Integer getRefundStatus() {
+///* 265 */     return this.refundStatus;
+///*     */   }
+///*     */
+///*     */   public void setRefundStatus(Integer refundStatus) {
+///* 269 */     this.refundStatus = refundStatus;
+///*     */   }
+///*     */
+///*     */   public String getRefundTime() {
+///* 273 */     return this.refundTime;
+///*     */   }
+///*     */
+///*     */   public void setRefundTime(String refundTime) {
+///* 277 */     this.refundTime = refundTime;
+///*     */   }
+///*     */
+///*     */   public Integer getSourceCode() {
+///* 281 */     return this.sourceCode;
+///*     */   }
+///*     */
+///*     */   public void setSourceCode(Integer sourceCode) {
+///* 285 */     this.sourceCode = sourceCode;
+///*     */   }
+///*     */
+///*     */   public String getOutOrderId() {
+///* 289 */     return this.outOrderId;
+///*     */   }
+///*     */
+///*     */   public void setOutOrderId(String outOrderId) {
+///* 293 */     this.outOrderId = outOrderId;
+///*     */   }
+///*     */
+///*     */   public Integer getOrderStatus() {
+///* 297 */     return this.orderStatus;
+///*     */   }
+///*     */
+///*     */   public void setOrderStatus(Integer orderStatus) {
+///* 301 */     this.orderStatus = orderStatus;
+///*     */   }
+///*     */
+///*     */   public String getOrderTime() {
+///* 305 */     return this.orderTime;
+///*     */   }
+///*     */
+///*     */   public void setOrderTime(String orderTime) {
+///* 309 */     this.orderTime = orderTime;
+///*     */   }
+///*     */
+///*     */   public Integer getPayType() {
+///* 313 */     return this.payType;
+///*     */   }
+///*     */
+///*     */   public void setPayType(Integer payType) {
+///* 317 */     this.payType = payType;
+///*     */   }
+///*     */
+///*     */   public String getExtraForOpen() {
+///* 321 */     return this.extraForOpen;
+///*     */   }
+///*     */
+///*     */   public void setExtraForOpen(String extraForOpen) {
+///* 325 */     this.extraForOpen = extraForOpen;
+///*     */   }
+///*     */
+///*     */   public Integer getUnitPrice() {
+///* 329 */     return this.unitPrice;
+///*     */   }
+///*     */
+///*     */   public void setUnitPrice(Integer unitPrice) {
+///* 333 */     this.unitPrice = unitPrice;
+///*     */   }
+///*     */
+///*     */   public String getOpenInfo() {
+///* 337 */     return this.openInfo;
+///*     */   }
+///*     */
+///*     */   public void setOpenInfo(String openInfo) {
+///* 341 */     this.openInfo = openInfo;
+///*     */   }
+///*     */
+///*     */   public PayCodeInfo getPayCodeDTO() {
+///* 345 */     return this.payCodeDTO;
+///*     */   }
+///*     */
+///*     */   public void setPayCodeDTO(PayCodeInfo payCodeDTO) {
+///* 349 */     this.payCodeDTO = payCodeDTO;
+///*     */   }
+///*     */
+///*     */   public Integer getBillingType() {
+///* 353 */     return this.billingType;
+///*     */   }
+///*     */
+///*     */   public void setBillingType(Integer billingType) {
+///* 357 */     this.billingType = billingType;
+///*     */   }
+///*     */ }
+//
+//
+///* Location:              E:\chendu\MicroService\application\SpringBatchService\SpringBatchServiceServer\src\main\resources\lib\oil-sdk-jar-1.0.16.jar!\com\xiaoju\open\oil\interfaces\request\NotificationOrderInfoRequest.class
+// * Java compiler version: 8 (52.0)
+// * JD-Core Version:       1.1.3
+// */

+ 38 - 273
SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/request/NotificationPushStoreInfoRequest.java

@@ -1,275 +1,40 @@
-/*     */ package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.request;
-/*     */ 
-/*     */ import com.xiaoju.open.oil.commons.exception.ApiRuleException;
-/*     */ import com.xiaoju.open.oil.commons.utils.ParamCheckUtils;
-/*     */ import com.xiaoju.open.oil.interfaces.domain.ItemPriceInfoForCallback;
-/*     */ import com.xiaoju.open.oil.interfaces.request.BaseOpenRequest;
-import com.xiaoju.open.oil.interfaces.response.NotificationPushStoreInfoResponse;
-/*     */ import java.util.List;
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ public class NotificationPushStoreInfoRequest
-/*     */   extends BaseOpenRequest<NotificationPushStoreInfoResponse>
-/*     */ {
-/*     */   private String storeId;
-/*     */   private String storeName;
-/*     */   private String address;
-/*     */   private Float lat;
-/*     */   private Float lon;
-/*     */   private String cityName;
-/*     */   private String brandId;
-/*     */   private String provinceName;
-/*     */   private String brandName;
-/*     */   private String tel;
-/*     */   private String openTimeHourStart;
-/*     */   private String openTimeHourEnd;
-/*     */   private String logo;
-/*     */   private List<String> picList;
-/*     */   private Integer status;
-/*     */   private Integer invoiceManner;
-/*     */   private List<String> marketTags;
-/*     */   private List<ItemPriceInfoForCallback> itemInfoList;
-/*     */   
-/*     */   public String getStoreId() {
-/* 109 */     return this.storeId;
-/*     */   }
-/*     */   
-/*     */   public void setStoreId(String storeId) {
-/* 113 */     this.storeId = storeId;
-/*     */   }
-/*     */   
-/*     */   public String getStoreName() {
-/* 117 */     return this.storeName;
-/*     */   }
-/*     */   
-/*     */   public void setStoreName(String storeName) {
-/* 121 */     this.storeName = storeName;
-/*     */   }
-/*     */   
-/*     */   public String getAddress() {
-/* 125 */     return this.address;
-/*     */   }
-/*     */   
-/*     */   public void setAddress(String address) {
-/* 129 */     this.address = address;
-/*     */   }
-/*     */   
-/*     */   public Float getLat() {
-/* 133 */     return this.lat;
-/*     */   }
-/*     */   
-/*     */   public void setLat(Float lat) {
-/* 137 */     this.lat = lat;
-/*     */   }
-/*     */   
-/*     */   public Float getLon() {
-/* 141 */     return this.lon;
-/*     */   }
-/*     */   
-/*     */   public void setLon(Float lon) {
-/* 145 */     this.lon = lon;
-/*     */   }
-/*     */   
-/*     */   public String getCityName() {
-/* 149 */     return this.cityName;
-/*     */   }
-/*     */   
-/*     */   public void setCityName(String cityName) {
-/* 153 */     this.cityName = cityName;
-/*     */   }
-/*     */   
-/*     */   public String getBrandId() {
-/* 157 */     return this.brandId;
-/*     */   }
-/*     */   
-/*     */   public void setBrandId(String brandId) {
-/* 161 */     this.brandId = brandId;
-/*     */   }
-/*     */   
-/*     */   public String getProvinceName() {
-/* 165 */     return this.provinceName;
-/*     */   }
-/*     */   
-/*     */   public void setProvinceName(String provinceName) {
-/* 169 */     this.provinceName = provinceName;
-/*     */   }
-/*     */   
-/*     */   public String getBrandName() {
-/* 173 */     return this.brandName;
-/*     */   }
-/*     */   
-/*     */   public void setBrandName(String brandName) {
-/* 177 */     this.brandName = brandName;
-/*     */   }
-/*     */   
-/*     */   public String getTel() {
-/* 181 */     return this.tel;
-/*     */   }
-/*     */   
-/*     */   public void setTel(String tel) {
-/* 185 */     this.tel = tel;
-/*     */   }
-/*     */   
-/*     */   public String getOpenTimeHourStart() {
-/* 189 */     return this.openTimeHourStart;
-/*     */   }
-/*     */   
-/*     */   public void setOpenTimeHourStart(String openTimeHourStart) {
-/* 193 */     this.openTimeHourStart = openTimeHourStart;
-/*     */   }
-/*     */   
-/*     */   public String getOpenTimeHourEnd() {
-/* 197 */     return this.openTimeHourEnd;
-/*     */   }
-/*     */   
-/*     */   public void setOpenTimeHourEnd(String openTimeHourEnd) {
-/* 201 */     this.openTimeHourEnd = openTimeHourEnd;
-/*     */   }
-/*     */   
-/*     */   public String getLogo() {
-/* 205 */     return this.logo;
-/*     */   }
-/*     */   
-/*     */   public void setLogo(String logo) {
-/* 209 */     this.logo = logo;
-/*     */   }
-/*     */   
-/*     */   public List<String> getPicList() {
-/* 213 */     return this.picList;
-/*     */   }
-/*     */   
-/*     */   public void setPicList(List<String> picList) {
-/* 217 */     this.picList = picList;
-/*     */   }
-/*     */   
-/*     */   public Integer getStatus() {
-/* 221 */     return this.status;
-/*     */   }
-/*     */   
-/*     */   public void setStatus(Integer status) {
-/* 225 */     this.status = status;
-/*     */   }
-/*     */   
-/*     */   public Integer getInvoiceManner() {
-/* 229 */     return this.invoiceManner;
-/*     */   }
-/*     */   
-/*     */   public void setInvoiceManner(Integer invoiceManner) {
-/* 233 */     this.invoiceManner = invoiceManner;
-/*     */   }
-/*     */   
-/*     */   public List<String> getMarketTags() {
-/* 237 */     return this.marketTags;
-/*     */   }
-/*     */   
-/*     */   public void setMarketTags(List<String> marketTags) {
-/* 241 */     this.marketTags = marketTags;
-/*     */   }
-/*     */   
-/*     */   public List<ItemPriceInfoForCallback> getItemInfoList() {
-/* 245 */     return this.itemInfoList;
-/*     */   }
-/*     */   
-/*     */   public void setItemInfoList(List<ItemPriceInfoForCallback> itemInfoList) {
-/* 249 */     this.itemInfoList = itemInfoList;
-/*     */   }
-/*     */ 
-/*     */   
-/*     */   public String getApiMethodName() {
-/* 254 */     return "/receivingGasStation";
-/*     */   }
-/*     */ 
-/*     */   
-/*     */   public void check() throws ApiRuleException {
-/* 259 */     ParamCheckUtils.checkNotEmpty(this.storeId, "storeId");
-/* 260 */     ParamCheckUtils.checkNotEmpty(this.storeName, "storeName");
-/* 261 */     ParamCheckUtils.checkNotEmpty(this.lat, "lat");
-/* 262 */     ParamCheckUtils.checkNotEmpty(this.lon, "lon");
-/* 263 */     ParamCheckUtils.checkNotEmpty(this.status, "status");
-/* 264 */     ParamCheckUtils.checkNotEmpty(this.openTimeHourStart, "openTimeHourStart");
-/* 265 */     ParamCheckUtils.checkNotEmpty(this.openTimeHourEnd, "openTimeHourEnd");
-/* 266 */     ParamCheckUtils.checkCollectNotEmpty(this.itemInfoList, "itemInfoList");
-/*     */   }
-/*     */ }
+package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.request;
 
 
-/* Location:              E:\chendu\MicroService\application\SpringBatchService\SpringBatchServiceServer\src\main\resources\lib\oil-sdk-jar-1.0.16.jar!\com\xiaoju\open\oil\interfaces\request\NotificationPushStoreInfoRequest.class
- * Java compiler version: 8 (52.0)
- * JD-Core Version:       1.1.3
- */
+import com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.domain.ItemPriceInfoForCallback;
+import lombok.AllArgsConstructor;
+import lombok.Data;
+import lombok.NoArgsConstructor;
+
+import java.util.List;
+
+@Data
+@AllArgsConstructor
+@NoArgsConstructor
+public class NotificationPushStoreInfoRequest {
+    private String storeId;
+    private String storeName;
+    private String address;
+    private Float lat;
+    private Float lon;
+    private String cityName;
+    private String brandId;
+    private String provinceName;
+    private String brandName;
+    private String tel;
+    private String openTimeHourStart;
+    private String openTimeHourEnd;
+    private String logo;
+    private List<String> picList;
+    private Integer status;
+    private Integer invoiceManner;
+    private List<String> marketTags;
+    private List<ItemPriceInfoForCallback> itemInfoList;
+
+
+    public String getApiMethodName() {
+        return "/receivingGasStation";
+    }
+
+
+}

+ 86 - 86
SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/request/NotificationReceiveRefundRequest.java

@@ -1,86 +1,86 @@
-/*    */ package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.request;
-/*    */ 
-/*    */ import com.xiaoju.open.oil.commons.exception.ApiRuleException;
-/*    */ import com.xiaoju.open.oil.commons.utils.ParamCheckUtils;
-/*    */ import com.xiaoju.open.oil.interfaces.request.BaseOpenRequest;
-import com.xiaoju.open.oil.interfaces.response.NotificationReceiveRefundResponse;
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ public class NotificationReceiveRefundRequest
-/*    */   extends BaseOpenRequest<NotificationReceiveRefundResponse>
-/*    */ {
-/*    */   private String xjOrderId;
-/*    */   private String outOrderId;
-/*    */   private Integer refundAmount;
-/*    */   private Integer refundType;
-/*    */   
-/*    */   public String getApiMethodName() {
-/* 37 */     return "/refundOrder";
-/*    */   }
-/*    */ 
-/*    */   
-/*    */   public void check() throws ApiRuleException {
-/* 42 */     ParamCheckUtils.checkNotEmpty(this.xjOrderId, "xjOrderId");
-/* 43 */     ParamCheckUtils.checkNotEmpty(this.outOrderId, "outOrderId");
-/* 44 */     ParamCheckUtils.checkNotEmpty(this.refundAmount, "refundAmount");
-/* 45 */     ParamCheckUtils.checkNotEmpty(this.refundType, "refundType");
-/*    */   }
-/*    */   
-/*    */   public String getXjOrderId() {
-/* 49 */     return this.xjOrderId;
-/*    */   }
-/*    */   
-/*    */   public void setXjOrderId(String xjOrderId) {
-/* 53 */     this.xjOrderId = xjOrderId;
-/*    */   }
-/*    */   
-/*    */   public String getOutOrderId() {
-/* 57 */     return this.outOrderId;
-/*    */   }
-/*    */   
-/*    */   public void setOutOrderId(String outOrderId) {
-/* 61 */     this.outOrderId = outOrderId;
-/*    */   }
-/*    */   
-/*    */   public Integer getRefundAmount() {
-/* 65 */     return this.refundAmount;
-/*    */   }
-/*    */   
-/*    */   public void setRefundAmount(Integer refundAmount) {
-/* 69 */     this.refundAmount = refundAmount;
-/*    */   }
-/*    */   
-/*    */   public Integer getRefundType() {
-/* 73 */     return this.refundType;
-/*    */   }
-/*    */   
-/*    */   public void setRefundType(Integer refundType) {
-/* 77 */     this.refundType = refundType;
-/*    */   }
-/*    */ }
-
-
-/* Location:              E:\chendu\MicroService\application\SpringBatchService\SpringBatchServiceServer\src\main\resources\lib\oil-sdk-jar-1.0.16.jar!\com\xiaoju\open\oil\interfaces\request\NotificationReceiveRefundRequest.class
- * Java compiler version: 8 (52.0)
- * JD-Core Version:       1.1.3
- */
+///*    */ package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.request;
+///*    */
+///*    */ import com.xiaoju.open.oil.commons.exception.ApiRuleException;
+///*    */ import com.xiaoju.open.oil.commons.utils.ParamCheckUtils;
+///*    */ import com.xiaoju.open.oil.interfaces.request.BaseOpenRequest;
+//import com.xiaoju.open.oil.interfaces.response.NotificationReceiveRefundResponse;
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */ public class NotificationReceiveRefundRequest
+///*    */   extends BaseOpenRequest<NotificationReceiveRefundResponse>
+///*    */ {
+///*    */   private String xjOrderId;
+///*    */   private String outOrderId;
+///*    */   private Integer refundAmount;
+///*    */   private Integer refundType;
+///*    */
+///*    */   public String getApiMethodName() {
+///* 37 */     return "/refundOrder";
+///*    */   }
+///*    */
+///*    */
+///*    */   public void check() throws ApiRuleException {
+///* 42 */     ParamCheckUtils.checkNotEmpty(this.xjOrderId, "xjOrderId");
+///* 43 */     ParamCheckUtils.checkNotEmpty(this.outOrderId, "outOrderId");
+///* 44 */     ParamCheckUtils.checkNotEmpty(this.refundAmount, "refundAmount");
+///* 45 */     ParamCheckUtils.checkNotEmpty(this.refundType, "refundType");
+///*    */   }
+///*    */
+///*    */   public String getXjOrderId() {
+///* 49 */     return this.xjOrderId;
+///*    */   }
+///*    */
+///*    */   public void setXjOrderId(String xjOrderId) {
+///* 53 */     this.xjOrderId = xjOrderId;
+///*    */   }
+///*    */
+///*    */   public String getOutOrderId() {
+///* 57 */     return this.outOrderId;
+///*    */   }
+///*    */
+///*    */   public void setOutOrderId(String outOrderId) {
+///* 61 */     this.outOrderId = outOrderId;
+///*    */   }
+///*    */
+///*    */   public Integer getRefundAmount() {
+///* 65 */     return this.refundAmount;
+///*    */   }
+///*    */
+///*    */   public void setRefundAmount(Integer refundAmount) {
+///* 69 */     this.refundAmount = refundAmount;
+///*    */   }
+///*    */
+///*    */   public Integer getRefundType() {
+///* 73 */     return this.refundType;
+///*    */   }
+///*    */
+///*    */   public void setRefundType(Integer refundType) {
+///* 77 */     this.refundType = refundType;
+///*    */   }
+///*    */ }
+//
+//
+///* Location:              E:\chendu\MicroService\application\SpringBatchService\SpringBatchServiceServer\src\main\resources\lib\oil-sdk-jar-1.0.16.jar!\com\xiaoju\open\oil\interfaces\request\NotificationReceiveRefundRequest.class
+// * Java compiler version: 8 (52.0)
+// * JD-Core Version:       1.1.3
+// */

+ 166 - 166
SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/request/QueryApiOrderListRequest.java

@@ -1,166 +1,166 @@
-/*     */ package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.request;
-/*     */ 
-/*     */ import com.xiaoju.open.oil.commons.exception.ApiRuleException;
-/*     */ import com.xiaoju.open.oil.commons.utils.ParamCheckUtils;
-/*     */ import com.xiaoju.open.oil.interfaces.request.BaseOpenRequest;
-import com.xiaoju.open.oil.interfaces.response.QueryApiOrderListResponse;
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ public class QueryApiOrderListRequest
-/*     */   extends BaseOpenRequest<QueryApiOrderListResponse>
-/*     */ {
-/*     */   private String mobile;
-/*     */   private String outUserId;
-/*     */   private String payTimeStart;
-/*     */   private String payTimeEnd;
-/*     */   private String orderTimeStart;
-/*     */   private String orderTimeEnd;
-/*  52 */   private Integer pageIndex = Integer.valueOf(1);
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */   
-/*  57 */   private Integer pageSize = Integer.valueOf(10);
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */   
-/*     */   private Integer orderStatus;
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */   
-/*  67 */   private Integer openChannel = Integer.valueOf(1);
-/*     */ 
-/*     */   
-/*     */   public String getApiMethodName() {
-/*  71 */     return "/open/energy/oil/v1/queryOrderList";
-/*     */   }
-/*     */ 
-/*     */   
-/*     */   public void check() throws ApiRuleException {
-/*  76 */     ParamCheckUtils.checkNotEmpty(this.outUserId, "outUserId");
-/*  77 */     ParamCheckUtils.checkNotEmpty(this.orderStatus, "orderStatus");
-/*     */   }
-/*     */   
-/*     */   public String getMobile() {
-/*  81 */     return this.mobile;
-/*     */   }
-/*     */   
-/*     */   public void setMobile(String mobile) {
-/*  85 */     this.mobile = mobile;
-/*     */   }
-/*     */   
-/*     */   public String getOutUserId() {
-/*  89 */     return this.outUserId;
-/*     */   }
-/*     */   
-/*     */   public void setOutUserId(String outUserId) {
-/*  93 */     this.outUserId = outUserId;
-/*     */   }
-/*     */   
-/*     */   public String getPayTimeStart() {
-/*  97 */     return this.payTimeStart;
-/*     */   }
-/*     */   
-/*     */   public void setPayTimeStart(String payTimeStart) {
-/* 101 */     this.payTimeStart = payTimeStart;
-/*     */   }
-/*     */   
-/*     */   public String getPayTimeEnd() {
-/* 105 */     return this.payTimeEnd;
-/*     */   }
-/*     */   
-/*     */   public void setPayTimeEnd(String payTimeEnd) {
-/* 109 */     this.payTimeEnd = payTimeEnd;
-/*     */   }
-/*     */   
-/*     */   public String getOrderTimeStart() {
-/* 113 */     return this.orderTimeStart;
-/*     */   }
-/*     */   
-/*     */   public void setOrderTimeStart(String orderTimeStart) {
-/* 117 */     this.orderTimeStart = orderTimeStart;
-/*     */   }
-/*     */   
-/*     */   public String getOrderTimeEnd() {
-/* 121 */     return this.orderTimeEnd;
-/*     */   }
-/*     */   
-/*     */   public void setOrderTimeEnd(String orderTimeEnd) {
-/* 125 */     this.orderTimeEnd = orderTimeEnd;
-/*     */   }
-/*     */   
-/*     */   public Integer getPageIndex() {
-/* 129 */     return this.pageIndex;
-/*     */   }
-/*     */   
-/*     */   public void setPageIndex(Integer pageIndex) {
-/* 133 */     this.pageIndex = pageIndex;
-/*     */   }
-/*     */   
-/*     */   public Integer getPageSize() {
-/* 137 */     return this.pageSize;
-/*     */   }
-/*     */   
-/*     */   public void setPageSize(Integer pageSize) {
-/* 141 */     this.pageSize = pageSize;
-/*     */   }
-/*     */   
-/*     */   public Integer getOrderStatus() {
-/* 145 */     return this.orderStatus;
-/*     */   }
-/*     */   
-/*     */   public void setOrderStatus(Integer orderStatus) {
-/* 149 */     this.orderStatus = orderStatus;
-/*     */   }
-/*     */   
-/*     */   public Integer getOpenChannel() {
-/* 153 */     return this.openChannel;
-/*     */   }
-/*     */   
-/*     */   public void setOpenChannel(Integer openChannel) {
-/* 157 */     this.openChannel = openChannel;
-/*     */   }
-/*     */ }
-
-
-/* Location:              E:\chendu\MicroService\application\SpringBatchService\SpringBatchServiceServer\src\main\resources\lib\oil-sdk-jar-1.0.16.jar!\com\xiaoju\open\oil\interfaces\request\QueryApiOrderListRequest.class
- * Java compiler version: 8 (52.0)
- * JD-Core Version:       1.1.3
- */
+///*     */ package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.request;
+///*     */
+///*     */ import com.xiaoju.open.oil.commons.exception.ApiRuleException;
+///*     */ import com.xiaoju.open.oil.commons.utils.ParamCheckUtils;
+///*     */ import com.xiaoju.open.oil.interfaces.request.BaseOpenRequest;
+//import com.xiaoju.open.oil.interfaces.response.QueryApiOrderListResponse;
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */ public class QueryApiOrderListRequest
+///*     */   extends BaseOpenRequest<QueryApiOrderListResponse>
+///*     */ {
+///*     */   private String mobile;
+///*     */   private String outUserId;
+///*     */   private String payTimeStart;
+///*     */   private String payTimeEnd;
+///*     */   private String orderTimeStart;
+///*     */   private String orderTimeEnd;
+///*  52 */   private Integer pageIndex = Integer.valueOf(1);
+///*     */
+///*     */
+///*     */
+///*     */
+///*  57 */   private Integer pageSize = Integer.valueOf(10);
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */   private Integer orderStatus;
+///*     */
+///*     */
+///*     */
+///*     */
+///*  67 */   private Integer openChannel = Integer.valueOf(1);
+///*     */
+///*     */
+///*     */   public String getApiMethodName() {
+///*  71 */     return "/open/energy/oil/v1/queryOrderList";
+///*     */   }
+///*     */
+///*     */
+///*     */   public void check() throws ApiRuleException {
+///*  76 */     ParamCheckUtils.checkNotEmpty(this.outUserId, "outUserId");
+///*  77 */     ParamCheckUtils.checkNotEmpty(this.orderStatus, "orderStatus");
+///*     */   }
+///*     */
+///*     */   public String getMobile() {
+///*  81 */     return this.mobile;
+///*     */   }
+///*     */
+///*     */   public void setMobile(String mobile) {
+///*  85 */     this.mobile = mobile;
+///*     */   }
+///*     */
+///*     */   public String getOutUserId() {
+///*  89 */     return this.outUserId;
+///*     */   }
+///*     */
+///*     */   public void setOutUserId(String outUserId) {
+///*  93 */     this.outUserId = outUserId;
+///*     */   }
+///*     */
+///*     */   public String getPayTimeStart() {
+///*  97 */     return this.payTimeStart;
+///*     */   }
+///*     */
+///*     */   public void setPayTimeStart(String payTimeStart) {
+///* 101 */     this.payTimeStart = payTimeStart;
+///*     */   }
+///*     */
+///*     */   public String getPayTimeEnd() {
+///* 105 */     return this.payTimeEnd;
+///*     */   }
+///*     */
+///*     */   public void setPayTimeEnd(String payTimeEnd) {
+///* 109 */     this.payTimeEnd = payTimeEnd;
+///*     */   }
+///*     */
+///*     */   public String getOrderTimeStart() {
+///* 113 */     return this.orderTimeStart;
+///*     */   }
+///*     */
+///*     */   public void setOrderTimeStart(String orderTimeStart) {
+///* 117 */     this.orderTimeStart = orderTimeStart;
+///*     */   }
+///*     */
+///*     */   public String getOrderTimeEnd() {
+///* 121 */     return this.orderTimeEnd;
+///*     */   }
+///*     */
+///*     */   public void setOrderTimeEnd(String orderTimeEnd) {
+///* 125 */     this.orderTimeEnd = orderTimeEnd;
+///*     */   }
+///*     */
+///*     */   public Integer getPageIndex() {
+///* 129 */     return this.pageIndex;
+///*     */   }
+///*     */
+///*     */   public void setPageIndex(Integer pageIndex) {
+///* 133 */     this.pageIndex = pageIndex;
+///*     */   }
+///*     */
+///*     */   public Integer getPageSize() {
+///* 137 */     return this.pageSize;
+///*     */   }
+///*     */
+///*     */   public void setPageSize(Integer pageSize) {
+///* 141 */     this.pageSize = pageSize;
+///*     */   }
+///*     */
+///*     */   public Integer getOrderStatus() {
+///* 145 */     return this.orderStatus;
+///*     */   }
+///*     */
+///*     */   public void setOrderStatus(Integer orderStatus) {
+///* 149 */     this.orderStatus = orderStatus;
+///*     */   }
+///*     */
+///*     */   public Integer getOpenChannel() {
+///* 153 */     return this.openChannel;
+///*     */   }
+///*     */
+///*     */   public void setOpenChannel(Integer openChannel) {
+///* 157 */     this.openChannel = openChannel;
+///*     */   }
+///*     */ }
+//
+//
+///* Location:              E:\chendu\MicroService\application\SpringBatchService\SpringBatchServiceServer\src\main\resources\lib\oil-sdk-jar-1.0.16.jar!\com\xiaoju\open\oil\interfaces\request\QueryApiOrderListRequest.class
+// * Java compiler version: 8 (52.0)
+// * JD-Core Version:       1.1.3
+// */

+ 73 - 73
SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/request/QueryApiStoreListRequest.java

@@ -1,73 +1,73 @@
-/*    */ package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.request;
-/*    */ 
-/*    */ import com.xiaoju.open.oil.commons.exception.ApiRuleException;
-/*    */ import com.xiaoju.open.oil.commons.utils.ParamCheckUtils;
-/*    */ import com.xiaoju.open.oil.interfaces.request.BaseOpenRequest;
-import com.xiaoju.open.oil.interfaces.response.QueryApiStoreListResponse;
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ public class QueryApiStoreListRequest
-/*    */   extends BaseOpenRequest<QueryApiStoreListResponse>
-/*    */ {
-/*    */   private Integer pageIndex;
-/*    */   private Integer pageSize;
-/* 29 */   private Integer openChannel = Integer.valueOf(1);
-/*    */   
-/*    */   public Integer getPageIndex() {
-/* 32 */     return this.pageIndex;
-/*    */   }
-/*    */   
-/*    */   public void setPageIndex(Integer pageIndex) {
-/* 36 */     this.pageIndex = pageIndex;
-/*    */   }
-/*    */   
-/*    */   public Integer getPageSize() {
-/* 40 */     return this.pageSize;
-/*    */   }
-/*    */   
-/*    */   public void setPageSize(Integer pageSize) {
-/* 44 */     this.pageSize = pageSize;
-/*    */   }
-/*    */   
-/*    */   public Integer getOpenChannel() {
-/* 48 */     return this.openChannel;
-/*    */   }
-/*    */   
-/*    */   public void setOpenChannel(Integer openChannel) {
-/* 52 */     this.openChannel = openChannel;
-/*    */   }
-/*    */ 
-/*    */   
-/*    */   public String getApiMethodName() {
-/* 57 */     return "/energy/v1/queryStoreList";
-/*    */   }
-/*    */ 
-/*    */   
-/*    */   public void check() throws ApiRuleException {
-/* 62 */     ParamCheckUtils.checkNotEmpty(this.pageIndex, "pageIndex");
-/* 63 */     ParamCheckUtils.checkNotEmpty(this.pageSize, "pageSize");
-/* 64 */     ParamCheckUtils.checkMaxValue(Long.valueOf(this.pageSize.longValue()), 100L, "pageSize");
-/*    */   }
-/*    */ }
-
-
-/* Location:              E:\chendu\MicroService\application\SpringBatchService\SpringBatchServiceServer\src\main\resources\lib\oil-sdk-jar-1.0.16.jar!\com\xiaoju\open\oil\interfaces\request\QueryApiStoreListRequest.class
- * Java compiler version: 8 (52.0)
- * JD-Core Version:       1.1.3
- */
+///*    */ package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.request;
+///*    */
+///*    */ import com.xiaoju.open.oil.commons.exception.ApiRuleException;
+///*    */ import com.xiaoju.open.oil.commons.utils.ParamCheckUtils;
+///*    */ import com.xiaoju.open.oil.interfaces.request.BaseOpenRequest;
+//import com.xiaoju.open.oil.interfaces.response.QueryApiStoreListResponse;
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */ public class QueryApiStoreListRequest
+///*    */   extends BaseOpenRequest<QueryApiStoreListResponse>
+///*    */ {
+///*    */   private Integer pageIndex;
+///*    */   private Integer pageSize;
+///* 29 */   private Integer openChannel = Integer.valueOf(1);
+///*    */
+///*    */   public Integer getPageIndex() {
+///* 32 */     return this.pageIndex;
+///*    */   }
+///*    */
+///*    */   public void setPageIndex(Integer pageIndex) {
+///* 36 */     this.pageIndex = pageIndex;
+///*    */   }
+///*    */
+///*    */   public Integer getPageSize() {
+///* 40 */     return this.pageSize;
+///*    */   }
+///*    */
+///*    */   public void setPageSize(Integer pageSize) {
+///* 44 */     this.pageSize = pageSize;
+///*    */   }
+///*    */
+///*    */   public Integer getOpenChannel() {
+///* 48 */     return this.openChannel;
+///*    */   }
+///*    */
+///*    */   public void setOpenChannel(Integer openChannel) {
+///* 52 */     this.openChannel = openChannel;
+///*    */   }
+///*    */
+///*    */
+///*    */   public String getApiMethodName() {
+///* 57 */     return "/energy/v1/queryStoreList";
+///*    */   }
+///*    */
+///*    */
+///*    */   public void check() throws ApiRuleException {
+///* 62 */     ParamCheckUtils.checkNotEmpty(this.pageIndex, "pageIndex");
+///* 63 */     ParamCheckUtils.checkNotEmpty(this.pageSize, "pageSize");
+///* 64 */     ParamCheckUtils.checkMaxValue(Long.valueOf(this.pageSize.longValue()), 100L, "pageSize");
+///*    */   }
+///*    */ }
+//
+//
+///* Location:              E:\chendu\MicroService\application\SpringBatchService\SpringBatchServiceServer\src\main\resources\lib\oil-sdk-jar-1.0.16.jar!\com\xiaoju\open\oil\interfaces\request\QueryApiStoreListRequest.class
+// * Java compiler version: 8 (52.0)
+// * JD-Core Version:       1.1.3
+// */

+ 128 - 128
SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/request/QueryEnergyUrlRequest.java

@@ -1,128 +1,128 @@
-/*     */ package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.request;
-/*     */ 
-/*     */ import com.xiaoju.open.oil.commons.exception.ApiRuleException;
-/*     */ import com.xiaoju.open.oil.commons.utils.ParamCheckUtils;
-/*     */ import com.xiaoju.open.oil.interfaces.request.BaseOpenRequest;
-import com.xiaoju.open.oil.interfaces.response.QueryEnergyUrlResponse;
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ public class QueryEnergyUrlRequest
-/*     */   extends BaseOpenRequest<QueryEnergyUrlResponse>
-/*     */ {
-/*     */   private String storeId;
-/*     */   private String itemName;
-/*     */   private Integer openChannel;
-/*     */   private String mobile;
-/*     */   private String outUserId;
-/*     */   private Double lon;
-/*     */   private Double lat;
-/*     */   
-/*     */   public String getApiMethodName() {
-/*  52 */     return "/energy/v1/queryEnergyUrl";
-/*     */   }
-/*     */ 
-/*     */   
-/*     */   public void check() throws ApiRuleException {
-/*  57 */     ParamCheckUtils.checkNotEmpty(this.storeId, "storeId");
-/*  58 */     ParamCheckUtils.checkNotEmpty(this.itemName, "itemName");
-/*  59 */     ParamCheckUtils.checkNotEmpty(this.openChannel, "openChannel");
-/*  60 */     ParamCheckUtils.checkNotEmpty(this.mobile, "mobile");
-/*  61 */     ParamCheckUtils.checkNotEmpty(this.outUserId, "outUserId");
-/*  62 */     ParamCheckUtils.checkNotEmpty(this.lon, "lon");
-/*  63 */     ParamCheckUtils.checkNotEmpty(this.lat, "lat");
-/*     */   }
-/*     */   
-/*     */   public String getStoreId() {
-/*  67 */     return this.storeId;
-/*     */   }
-/*     */   
-/*     */   public void setStoreId(String storeId) {
-/*  71 */     this.storeId = storeId;
-/*     */   }
-/*     */   
-/*     */   public String getItemName() {
-/*  75 */     return this.itemName;
-/*     */   }
-/*     */   
-/*     */   public void setItemName(String itemName) {
-/*  79 */     this.itemName = itemName;
-/*     */   }
-/*     */   
-/*     */   public Integer getOpenChannel() {
-/*  83 */     return this.openChannel;
-/*     */   }
-/*     */   
-/*     */   public void setOpenChannel(Integer openChannel) {
-/*  87 */     this.openChannel = openChannel;
-/*     */   }
-/*     */   
-/*     */   public String getMobile() {
-/*  91 */     return this.mobile;
-/*     */   }
-/*     */   
-/*     */   public void setMobile(String mobile) {
-/*  95 */     this.mobile = mobile;
-/*     */   }
-/*     */   
-/*     */   public String getOutUserId() {
-/*  99 */     return this.outUserId;
-/*     */   }
-/*     */   
-/*     */   public void setOutUserId(String outUserId) {
-/* 103 */     this.outUserId = outUserId;
-/*     */   }
-/*     */   
-/*     */   public Double getLon() {
-/* 107 */     return this.lon;
-/*     */   }
-/*     */   
-/*     */   public void setLon(Double lon) {
-/* 111 */     this.lon = lon;
-/*     */   }
-/*     */   
-/*     */   public Double getLat() {
-/* 115 */     return this.lat;
-/*     */   }
-/*     */   
-/*     */   public void setLat(Double lat) {
-/* 119 */     this.lat = lat;
-/*     */   }
-/*     */ }
-
-
-/* Location:              E:\chendu\MicroService\application\SpringBatchService\SpringBatchServiceServer\src\main\resources\lib\oil-sdk-jar-1.0.16.jar!\com\xiaoju\open\oil\interfaces\request\QueryEnergyUrlRequest.class
- * Java compiler version: 8 (52.0)
- * JD-Core Version:       1.1.3
- */
+///*     */ package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.request;
+///*     */
+///*     */ import com.xiaoju.open.oil.commons.exception.ApiRuleException;
+///*     */ import com.xiaoju.open.oil.commons.utils.ParamCheckUtils;
+///*     */ import com.xiaoju.open.oil.interfaces.request.BaseOpenRequest;
+//import com.xiaoju.open.oil.interfaces.response.QueryEnergyUrlResponse;
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */ public class QueryEnergyUrlRequest
+///*     */   extends BaseOpenRequest<QueryEnergyUrlResponse>
+///*     */ {
+///*     */   private String storeId;
+///*     */   private String itemName;
+///*     */   private Integer openChannel;
+///*     */   private String mobile;
+///*     */   private String outUserId;
+///*     */   private Double lon;
+///*     */   private Double lat;
+///*     */
+///*     */   public String getApiMethodName() {
+///*  52 */     return "/energy/v1/queryEnergyUrl";
+///*     */   }
+///*     */
+///*     */
+///*     */   public void check() throws ApiRuleException {
+///*  57 */     ParamCheckUtils.checkNotEmpty(this.storeId, "storeId");
+///*  58 */     ParamCheckUtils.checkNotEmpty(this.itemName, "itemName");
+///*  59 */     ParamCheckUtils.checkNotEmpty(this.openChannel, "openChannel");
+///*  60 */     ParamCheckUtils.checkNotEmpty(this.mobile, "mobile");
+///*  61 */     ParamCheckUtils.checkNotEmpty(this.outUserId, "outUserId");
+///*  62 */     ParamCheckUtils.checkNotEmpty(this.lon, "lon");
+///*  63 */     ParamCheckUtils.checkNotEmpty(this.lat, "lat");
+///*     */   }
+///*     */
+///*     */   public String getStoreId() {
+///*  67 */     return this.storeId;
+///*     */   }
+///*     */
+///*     */   public void setStoreId(String storeId) {
+///*  71 */     this.storeId = storeId;
+///*     */   }
+///*     */
+///*     */   public String getItemName() {
+///*  75 */     return this.itemName;
+///*     */   }
+///*     */
+///*     */   public void setItemName(String itemName) {
+///*  79 */     this.itemName = itemName;
+///*     */   }
+///*     */
+///*     */   public Integer getOpenChannel() {
+///*  83 */     return this.openChannel;
+///*     */   }
+///*     */
+///*     */   public void setOpenChannel(Integer openChannel) {
+///*  87 */     this.openChannel = openChannel;
+///*     */   }
+///*     */
+///*     */   public String getMobile() {
+///*  91 */     return this.mobile;
+///*     */   }
+///*     */
+///*     */   public void setMobile(String mobile) {
+///*  95 */     this.mobile = mobile;
+///*     */   }
+///*     */
+///*     */   public String getOutUserId() {
+///*  99 */     return this.outUserId;
+///*     */   }
+///*     */
+///*     */   public void setOutUserId(String outUserId) {
+///* 103 */     this.outUserId = outUserId;
+///*     */   }
+///*     */
+///*     */   public Double getLon() {
+///* 107 */     return this.lon;
+///*     */   }
+///*     */
+///*     */   public void setLon(Double lon) {
+///* 111 */     this.lon = lon;
+///*     */   }
+///*     */
+///*     */   public Double getLat() {
+///* 115 */     return this.lat;
+///*     */   }
+///*     */
+///*     */   public void setLat(Double lat) {
+///* 119 */     this.lat = lat;
+///*     */   }
+///*     */ }
+//
+//
+///* Location:              E:\chendu\MicroService\application\SpringBatchService\SpringBatchServiceServer\src\main\resources\lib\oil-sdk-jar-1.0.16.jar!\com\xiaoju\open\oil\interfaces\request\QueryEnergyUrlRequest.class
+// * Java compiler version: 8 (52.0)
+// * JD-Core Version:       1.1.3
+// */

+ 84 - 84
SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/request/QueryGetPromotionRequest.java

@@ -1,84 +1,84 @@
-/*    */ package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.request;
-/*    */ 
-/*    */ import com.xiaoju.open.oil.commons.exception.ApiRuleException;
-/*    */ import com.xiaoju.open.oil.commons.utils.ParamCheckUtils;
-import com.xiaoju.open.oil.interfaces.request.BaseOpenRequest;
-/*    */ import java.util.List;
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ public class QueryGetPromotionRequest
-/*    */   extends BaseOpenRequest<List>
-/*    */ {
-/*    */   private String mobile;
-/*    */   private String outUserId;
-/*    */   private String activityId;
-/*    */   private String tradeNo;
-/*    */   
-/*    */   public String getApiMethodName() {
-/* 36 */     return "/open/energy/v1/getPromotion";
-/*    */   }
-/*    */ 
-/*    */   
-/*    */   public void check() throws ApiRuleException {
-/* 41 */     ParamCheckUtils.checkNotEmpty(this.outUserId, "outUserId");
-/* 42 */     ParamCheckUtils.checkNotEmpty(this.activityId, "activityId");
-/* 43 */     ParamCheckUtils.checkNotEmpty(this.tradeNo, "tradeNo");
-/*    */   }
-/*    */   
-/*    */   public String getMobile() {
-/* 47 */     return this.mobile;
-/*    */   }
-/*    */   
-/*    */   public void setMobile(String mobile) {
-/* 51 */     this.mobile = mobile;
-/*    */   }
-/*    */   
-/*    */   public String getOutUserId() {
-/* 55 */     return this.outUserId;
-/*    */   }
-/*    */   
-/*    */   public void setOutUserId(String outUserId) {
-/* 59 */     this.outUserId = outUserId;
-/*    */   }
-/*    */   
-/*    */   public String getActivityId() {
-/* 63 */     return this.activityId;
-/*    */   }
-/*    */   
-/*    */   public void setActivityId(String activityId) {
-/* 67 */     this.activityId = activityId;
-/*    */   }
-/*    */   
-/*    */   public String getTradeNo() {
-/* 71 */     return this.tradeNo;
-/*    */   }
-/*    */   
-/*    */   public void setTradeNo(String tradeNo) {
-/* 75 */     this.tradeNo = tradeNo;
-/*    */   }
-/*    */ }
-
-
-/* Location:              E:\chendu\MicroService\application\SpringBatchService\SpringBatchServiceServer\src\main\resources\lib\oil-sdk-jar-1.0.16.jar!\com\xiaoju\open\oil\interfaces\request\QueryGetPromotionRequest.class
- * Java compiler version: 8 (52.0)
- * JD-Core Version:       1.1.3
- */
+///*    */ package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.request;
+///*    */
+///*    */ import com.xiaoju.open.oil.commons.exception.ApiRuleException;
+///*    */ import com.xiaoju.open.oil.commons.utils.ParamCheckUtils;
+//import com.xiaoju.open.oil.interfaces.request.BaseOpenRequest;
+///*    */ import java.util.List;
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */ public class QueryGetPromotionRequest
+///*    */   extends BaseOpenRequest<List>
+///*    */ {
+///*    */   private String mobile;
+///*    */   private String outUserId;
+///*    */   private String activityId;
+///*    */   private String tradeNo;
+///*    */
+///*    */   public String getApiMethodName() {
+///* 36 */     return "/open/energy/v1/getPromotion";
+///*    */   }
+///*    */
+///*    */
+///*    */   public void check() throws ApiRuleException {
+///* 41 */     ParamCheckUtils.checkNotEmpty(this.outUserId, "outUserId");
+///* 42 */     ParamCheckUtils.checkNotEmpty(this.activityId, "activityId");
+///* 43 */     ParamCheckUtils.checkNotEmpty(this.tradeNo, "tradeNo");
+///*    */   }
+///*    */
+///*    */   public String getMobile() {
+///* 47 */     return this.mobile;
+///*    */   }
+///*    */
+///*    */   public void setMobile(String mobile) {
+///* 51 */     this.mobile = mobile;
+///*    */   }
+///*    */
+///*    */   public String getOutUserId() {
+///* 55 */     return this.outUserId;
+///*    */   }
+///*    */
+///*    */   public void setOutUserId(String outUserId) {
+///* 59 */     this.outUserId = outUserId;
+///*    */   }
+///*    */
+///*    */   public String getActivityId() {
+///* 63 */     return this.activityId;
+///*    */   }
+///*    */
+///*    */   public void setActivityId(String activityId) {
+///* 67 */     this.activityId = activityId;
+///*    */   }
+///*    */
+///*    */   public String getTradeNo() {
+///* 71 */     return this.tradeNo;
+///*    */   }
+///*    */
+///*    */   public void setTradeNo(String tradeNo) {
+///* 75 */     this.tradeNo = tradeNo;
+///*    */   }
+///*    */ }
+//
+//
+///* Location:              E:\chendu\MicroService\application\SpringBatchService\SpringBatchServiceServer\src\main\resources\lib\oil-sdk-jar-1.0.16.jar!\com\xiaoju\open\oil\interfaces\request\QueryGetPromotionRequest.class
+// * Java compiler version: 8 (52.0)
+// * JD-Core Version:       1.1.3
+// */

+ 44 - 44
SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/request/QueryOrderInfoRequest.java

@@ -1,44 +1,44 @@
-/*    */ package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.request;
-/*    */ 
-/*    */ import com.xiaoju.open.oil.commons.exception.ApiRuleException;
-/*    */ import com.xiaoju.open.oil.commons.utils.ParamCheckUtils;
-/*    */ import com.xiaoju.open.oil.interfaces.request.BaseOpenRequest;
-import com.xiaoju.open.oil.interfaces.response.QueryOrderInfoResponse;
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ public class QueryOrderInfoRequest
-/*    */   extends BaseOpenRequest<QueryOrderInfoResponse>
-/*    */ {
-/*    */   private String orderId;
-/*    */   
-/*    */   public String getApiMethodName() {
-/* 22 */     return "/energy/v1/queryOrderInfo";
-/*    */   }
-/*    */ 
-/*    */   
-/*    */   public void check() throws ApiRuleException {
-/* 27 */     ParamCheckUtils.checkNotEmpty(this.orderId, "orderId");
-/*    */   }
-/*    */   
-/*    */   public String getOrderId() {
-/* 31 */     return this.orderId;
-/*    */   }
-/*    */   
-/*    */   public void setOrderId(String orderId) {
-/* 35 */     this.orderId = orderId;
-/*    */   }
-/*    */ }
-
-
-/* Location:              E:\chendu\MicroService\application\SpringBatchService\SpringBatchServiceServer\src\main\resources\lib\oil-sdk-jar-1.0.16.jar!\com\xiaoju\open\oil\interfaces\request\QueryOrderInfoRequest.class
- * Java compiler version: 8 (52.0)
- * JD-Core Version:       1.1.3
- */
+///*    */ package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.request;
+///*    */
+///*    */ import com.xiaoju.open.oil.commons.exception.ApiRuleException;
+///*    */ import com.xiaoju.open.oil.commons.utils.ParamCheckUtils;
+///*    */ import com.xiaoju.open.oil.interfaces.request.BaseOpenRequest;
+//import com.xiaoju.open.oil.interfaces.response.QueryOrderInfoResponse;
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */ public class QueryOrderInfoRequest
+///*    */   extends BaseOpenRequest<QueryOrderInfoResponse>
+///*    */ {
+///*    */   private String orderId;
+///*    */
+///*    */   public String getApiMethodName() {
+///* 22 */     return "/energy/v1/queryOrderInfo";
+///*    */   }
+///*    */
+///*    */
+///*    */   public void check() throws ApiRuleException {
+///* 27 */     ParamCheckUtils.checkNotEmpty(this.orderId, "orderId");
+///*    */   }
+///*    */
+///*    */   public String getOrderId() {
+///* 31 */     return this.orderId;
+///*    */   }
+///*    */
+///*    */   public void setOrderId(String orderId) {
+///* 35 */     this.orderId = orderId;
+///*    */   }
+///*    */ }
+//
+//
+///* Location:              E:\chendu\MicroService\application\SpringBatchService\SpringBatchServiceServer\src\main\resources\lib\oil-sdk-jar-1.0.16.jar!\com\xiaoju\open\oil\interfaces\request\QueryOrderInfoRequest.class
+// * Java compiler version: 8 (52.0)
+// * JD-Core Version:       1.1.3
+// */

+ 135 - 135
SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/request/QueryOrderListRequest.java

@@ -1,135 +1,135 @@
-/*     */ package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.request;
-/*     */ 
-/*     */ import com.xiaoju.open.oil.commons.exception.ApiRuleException;
-/*     */ import com.xiaoju.open.oil.commons.utils.ParamCheckUtils;
-/*     */ import com.xiaoju.open.oil.interfaces.request.BaseOpenRequest;
-import com.xiaoju.open.oil.interfaces.response.QueryOrderListResponse;
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ public class QueryOrderListRequest
-/*     */   extends BaseOpenRequest<QueryOrderListResponse>
-/*     */ {
-/*     */   private String outUserId;
-/*     */   private String queryStartTime;
-/*     */   private String queryEndTime;
-/*     */   private String orderTimeStart;
-/*     */   private String orderTimeEnd;
-/*     */   private Integer pageIndex;
-/*     */   private Integer pageSize;
-/*     */   private Integer orderStatus;
-/*     */   
-/*     */   public String getApiMethodName() {
-/*  56 */     return "/energy/v1/queryOrderList";
-/*     */   }
-/*     */ 
-/*     */   
-/*     */   public void check() throws ApiRuleException {
-/*  61 */     ParamCheckUtils.checkNotEmpty(this.pageIndex, "pageIndex");
-/*  62 */     ParamCheckUtils.checkNotEmpty(this.pageSize, "pageSize");
-/*     */   }
-/*     */   
-/*     */   public String getOutUserId() {
-/*  66 */     return this.outUserId;
-/*     */   }
-/*     */   
-/*     */   public void setOutUserId(String outUserId) {
-/*  70 */     this.outUserId = outUserId;
-/*     */   }
-/*     */   
-/*     */   public String getQueryStartTime() {
-/*  74 */     return this.queryStartTime;
-/*     */   }
-/*     */   
-/*     */   public void setQueryStartTime(String queryStartTime) {
-/*  78 */     this.queryStartTime = queryStartTime;
-/*     */   }
-/*     */   
-/*     */   public String getQueryEndTime() {
-/*  82 */     return this.queryEndTime;
-/*     */   }
-/*     */   
-/*     */   public void setQueryEndTime(String queryEndTime) {
-/*  86 */     this.queryEndTime = queryEndTime;
-/*     */   }
-/*     */   
-/*     */   public String getOrderTimeStart() {
-/*  90 */     return this.orderTimeStart;
-/*     */   }
-/*     */   
-/*     */   public void setOrderTimeStart(String orderTimeStart) {
-/*  94 */     this.orderTimeStart = orderTimeStart;
-/*     */   }
-/*     */   
-/*     */   public String getOrderTimeEnd() {
-/*  98 */     return this.orderTimeEnd;
-/*     */   }
-/*     */   
-/*     */   public void setOrderTimeEnd(String orderTimeEnd) {
-/* 102 */     this.orderTimeEnd = orderTimeEnd;
-/*     */   }
-/*     */   
-/*     */   public Integer getPageIndex() {
-/* 106 */     return this.pageIndex;
-/*     */   }
-/*     */   
-/*     */   public void setPageIndex(Integer pageIndex) {
-/* 110 */     this.pageIndex = pageIndex;
-/*     */   }
-/*     */   
-/*     */   public Integer getPageSize() {
-/* 114 */     return this.pageSize;
-/*     */   }
-/*     */   
-/*     */   public void setPageSize(Integer pageSize) {
-/* 118 */     this.pageSize = pageSize;
-/*     */   }
-/*     */   
-/*     */   public Integer getOrderStatus() {
-/* 122 */     return this.orderStatus;
-/*     */   }
-/*     */   
-/*     */   public void setOrderStatus(Integer orderStatus) {
-/* 126 */     this.orderStatus = orderStatus;
-/*     */   }
-/*     */ }
-
-
-/* Location:              E:\chendu\MicroService\application\SpringBatchService\SpringBatchServiceServer\src\main\resources\lib\oil-sdk-jar-1.0.16.jar!\com\xiaoju\open\oil\interfaces\request\QueryOrderListRequest.class
- * Java compiler version: 8 (52.0)
- * JD-Core Version:       1.1.3
- */
+///*     */ package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.request;
+///*     */
+///*     */ import com.xiaoju.open.oil.commons.exception.ApiRuleException;
+///*     */ import com.xiaoju.open.oil.commons.utils.ParamCheckUtils;
+///*     */ import com.xiaoju.open.oil.interfaces.request.BaseOpenRequest;
+//import com.xiaoju.open.oil.interfaces.response.QueryOrderListResponse;
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */ public class QueryOrderListRequest
+///*     */   extends BaseOpenRequest<QueryOrderListResponse>
+///*     */ {
+///*     */   private String outUserId;
+///*     */   private String queryStartTime;
+///*     */   private String queryEndTime;
+///*     */   private String orderTimeStart;
+///*     */   private String orderTimeEnd;
+///*     */   private Integer pageIndex;
+///*     */   private Integer pageSize;
+///*     */   private Integer orderStatus;
+///*     */
+///*     */   public String getApiMethodName() {
+///*  56 */     return "/energy/v1/queryOrderList";
+///*     */   }
+///*     */
+///*     */
+///*     */   public void check() throws ApiRuleException {
+///*  61 */     ParamCheckUtils.checkNotEmpty(this.pageIndex, "pageIndex");
+///*  62 */     ParamCheckUtils.checkNotEmpty(this.pageSize, "pageSize");
+///*     */   }
+///*     */
+///*     */   public String getOutUserId() {
+///*  66 */     return this.outUserId;
+///*     */   }
+///*     */
+///*     */   public void setOutUserId(String outUserId) {
+///*  70 */     this.outUserId = outUserId;
+///*     */   }
+///*     */
+///*     */   public String getQueryStartTime() {
+///*  74 */     return this.queryStartTime;
+///*     */   }
+///*     */
+///*     */   public void setQueryStartTime(String queryStartTime) {
+///*  78 */     this.queryStartTime = queryStartTime;
+///*     */   }
+///*     */
+///*     */   public String getQueryEndTime() {
+///*  82 */     return this.queryEndTime;
+///*     */   }
+///*     */
+///*     */   public void setQueryEndTime(String queryEndTime) {
+///*  86 */     this.queryEndTime = queryEndTime;
+///*     */   }
+///*     */
+///*     */   public String getOrderTimeStart() {
+///*  90 */     return this.orderTimeStart;
+///*     */   }
+///*     */
+///*     */   public void setOrderTimeStart(String orderTimeStart) {
+///*  94 */     this.orderTimeStart = orderTimeStart;
+///*     */   }
+///*     */
+///*     */   public String getOrderTimeEnd() {
+///*  98 */     return this.orderTimeEnd;
+///*     */   }
+///*     */
+///*     */   public void setOrderTimeEnd(String orderTimeEnd) {
+///* 102 */     this.orderTimeEnd = orderTimeEnd;
+///*     */   }
+///*     */
+///*     */   public Integer getPageIndex() {
+///* 106 */     return this.pageIndex;
+///*     */   }
+///*     */
+///*     */   public void setPageIndex(Integer pageIndex) {
+///* 110 */     this.pageIndex = pageIndex;
+///*     */   }
+///*     */
+///*     */   public Integer getPageSize() {
+///* 114 */     return this.pageSize;
+///*     */   }
+///*     */
+///*     */   public void setPageSize(Integer pageSize) {
+///* 118 */     this.pageSize = pageSize;
+///*     */   }
+///*     */
+///*     */   public Integer getOrderStatus() {
+///* 122 */     return this.orderStatus;
+///*     */   }
+///*     */
+///*     */   public void setOrderStatus(Integer orderStatus) {
+///* 126 */     this.orderStatus = orderStatus;
+///*     */   }
+///*     */ }
+//
+//
+///* Location:              E:\chendu\MicroService\application\SpringBatchService\SpringBatchServiceServer\src\main\resources\lib\oil-sdk-jar-1.0.16.jar!\com\xiaoju\open\oil\interfaces\request\QueryOrderListRequest.class
+// * Java compiler version: 8 (52.0)
+// * JD-Core Version:       1.1.3
+// */

+ 59 - 59
SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/request/QueryStoreListRequest.java

@@ -1,59 +1,59 @@
-/*    */ package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.request;
-/*    */ 
-/*    */ import com.xiaoju.open.oil.commons.exception.ApiRuleException;
-/*    */ import com.xiaoju.open.oil.commons.utils.ParamCheckUtils;
-/*    */ import com.xiaoju.open.oil.interfaces.request.BaseOpenRequest;
-import com.xiaoju.open.oil.interfaces.response.QueryStoreListResponse;
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ public class QueryStoreListRequest
-/*    */   extends BaseOpenRequest<QueryStoreListResponse>
-/*    */ {
-/* 18 */   private Integer pageIndex = Integer.valueOf(1);
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */   
-/* 23 */   private Integer pageSize = Integer.valueOf(10);
-/*    */ 
-/*    */   
-/*    */   public String getApiMethodName() {
-/* 27 */     return "/energy/v1/queryStoreList";
-/*    */   }
-/*    */ 
-/*    */   
-/*    */   public void check() throws ApiRuleException {
-/* 32 */     ParamCheckUtils.checkNotEmpty(this.pageIndex, "pageIndex");
-/* 33 */     ParamCheckUtils.checkNotEmpty(this.pageSize, "pageSize");
-/* 34 */     ParamCheckUtils.checkMaxValue(Long.valueOf(this.pageSize.longValue()), 100L, "pageSize");
-/*    */   }
-/*    */   
-/*    */   public Integer getPageIndex() {
-/* 38 */     return this.pageIndex;
-/*    */   }
-/*    */   
-/*    */   public void setPageIndex(Integer pageIndex) {
-/* 42 */     this.pageIndex = pageIndex;
-/*    */   }
-/*    */   
-/*    */   public Integer getPageSize() {
-/* 46 */     return this.pageSize;
-/*    */   }
-/*    */   
-/*    */   public void setPageSize(Integer pageSize) {
-/* 50 */     this.pageSize = pageSize;
-/*    */   }
-/*    */ }
-
-
-/* Location:              E:\chendu\MicroService\application\SpringBatchService\SpringBatchServiceServer\src\main\resources\lib\oil-sdk-jar-1.0.16.jar!\com\xiaoju\open\oil\interfaces\request\QueryStoreListRequest.class
- * Java compiler version: 8 (52.0)
- * JD-Core Version:       1.1.3
- */
+///*    */ package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.request;
+///*    */
+///*    */ import com.xiaoju.open.oil.commons.exception.ApiRuleException;
+///*    */ import com.xiaoju.open.oil.commons.utils.ParamCheckUtils;
+///*    */ import com.xiaoju.open.oil.interfaces.request.BaseOpenRequest;
+//import com.xiaoju.open.oil.interfaces.response.QueryStoreListResponse;
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */ public class QueryStoreListRequest
+///*    */   extends BaseOpenRequest<QueryStoreListResponse>
+///*    */ {
+///* 18 */   private Integer pageIndex = Integer.valueOf(1);
+///*    */
+///*    */
+///*    */
+///*    */
+///* 23 */   private Integer pageSize = Integer.valueOf(10);
+///*    */
+///*    */
+///*    */   public String getApiMethodName() {
+///* 27 */     return "/energy/v1/queryStoreList";
+///*    */   }
+///*    */
+///*    */
+///*    */   public void check() throws ApiRuleException {
+///* 32 */     ParamCheckUtils.checkNotEmpty(this.pageIndex, "pageIndex");
+///* 33 */     ParamCheckUtils.checkNotEmpty(this.pageSize, "pageSize");
+///* 34 */     ParamCheckUtils.checkMaxValue(Long.valueOf(this.pageSize.longValue()), 100L, "pageSize");
+///*    */   }
+///*    */
+///*    */   public Integer getPageIndex() {
+///* 38 */     return this.pageIndex;
+///*    */   }
+///*    */
+///*    */   public void setPageIndex(Integer pageIndex) {
+///* 42 */     this.pageIndex = pageIndex;
+///*    */   }
+///*    */
+///*    */   public Integer getPageSize() {
+///* 46 */     return this.pageSize;
+///*    */   }
+///*    */
+///*    */   public void setPageSize(Integer pageSize) {
+///* 50 */     this.pageSize = pageSize;
+///*    */   }
+///*    */ }
+//
+//
+///* Location:              E:\chendu\MicroService\application\SpringBatchService\SpringBatchServiceServer\src\main\resources\lib\oil-sdk-jar-1.0.16.jar!\com\xiaoju\open\oil\interfaces\request\QueryStoreListRequest.class
+// * Java compiler version: 8 (52.0)
+// * JD-Core Version:       1.1.3
+// */

+ 146 - 146
SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/request/QueryStorePriceRequest.java

@@ -1,146 +1,146 @@
-/*     */ package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.request;
-/*     */ 
-/*     */ import com.xiaoju.open.oil.commons.exception.ApiRuleException;
-/*     */ import com.xiaoju.open.oil.commons.utils.ParamCheckUtils;
-/*     */ import com.xiaoju.open.oil.interfaces.request.BaseOpenRequest;
-import com.xiaoju.open.oil.interfaces.response.QueryStorePriceResponse;
-/*     */ import java.util.List;
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ public class QueryStorePriceRequest
-/*     */   extends BaseOpenRequest<QueryStorePriceResponse>
-/*     */ {
-/*     */   private List<String> storeIdList;
-/*     */   private Integer openChannel;
-/*     */   private String itemName;
-/*     */   private String mobile;
-/*     */   private String outNewUserFlag;
-/*     */   private Float lon;
-/*     */   private Float lat;
-/*     */   
-/*     */   public String getApiMethodName() {
-/*  61 */     return "/energy/v1/queryStorePrice";
-/*     */   }
-/*     */ 
-/*     */   
-/*     */   public void check() throws ApiRuleException {
-/*  66 */     ParamCheckUtils.checkCollectNotEmpty(this.storeIdList, "storeIdList");
-/*  67 */     ParamCheckUtils.checkNotEmpty(this.openChannel, "openChannel");
-/*  68 */     ParamCheckUtils.checkNotEmpty(this.itemName, "itemName");
-/*  69 */     ParamCheckUtils.checkNotEmpty(this.lon, "lon");
-/*  70 */     ParamCheckUtils.checkNotEmpty(this.lat, "lat");
-/*  71 */     ParamCheckUtils.checkMaxListSize(this.storeIdList, 20, "storeIdList");
-/*  72 */     ParamCheckUtils.checkNotEmpty(this.mobile, "mobile");
-/*     */   }
-/*     */ 
-/*     */   
-/*     */   public List<String> getStoreIdList() {
-/*  77 */     return this.storeIdList;
-/*     */   }
-/*     */   
-/*     */   public void setStoreIdList(List<String> storeIdList) {
-/*  81 */     this.storeIdList = storeIdList;
-/*     */   }
-/*     */   
-/*     */   public Integer getOpenChannel() {
-/*  85 */     return this.openChannel;
-/*     */   }
-/*     */   
-/*     */   public void setOpenChannel(Integer openChannel) {
-/*  89 */     this.openChannel = openChannel;
-/*     */   }
-/*     */   
-/*     */   public String getItemName() {
-/*  93 */     return this.itemName;
-/*     */   }
-/*     */   
-/*     */   public void setItemName(String itemName) {
-/*  97 */     this.itemName = itemName;
-/*     */   }
-/*     */   
-/*     */   public String getMobile() {
-/* 101 */     return this.mobile;
-/*     */   }
-/*     */   
-/*     */   public void setMobile(String mobile) {
-/* 105 */     this.mobile = mobile;
-/*     */   }
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */   
-/*     */   public String getOutNewUserFlag() {
-/* 117 */     return this.outNewUserFlag;
-/*     */   }
-/*     */   
-/*     */   public void setOutNewUserFlag(String outNewUserFlag) {
-/* 121 */     this.outNewUserFlag = outNewUserFlag;
-/*     */   }
-/*     */   
-/*     */   public Float getLon() {
-/* 125 */     return this.lon;
-/*     */   }
-/*     */   
-/*     */   public void setLon(Float lon) {
-/* 129 */     this.lon = lon;
-/*     */   }
-/*     */   
-/*     */   public Float getLat() {
-/* 133 */     return this.lat;
-/*     */   }
-/*     */   
-/*     */   public void setLat(Float lat) {
-/* 137 */     this.lat = lat;
-/*     */   }
-/*     */ }
-
-
-/* Location:              E:\chendu\MicroService\application\SpringBatchService\SpringBatchServiceServer\src\main\resources\lib\oil-sdk-jar-1.0.16.jar!\com\xiaoju\open\oil\interfaces\request\QueryStorePriceRequest.class
- * Java compiler version: 8 (52.0)
- * JD-Core Version:       1.1.3
- */
+///*     */ package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.request;
+///*     */
+///*     */ import com.xiaoju.open.oil.commons.exception.ApiRuleException;
+///*     */ import com.xiaoju.open.oil.commons.utils.ParamCheckUtils;
+///*     */ import com.xiaoju.open.oil.interfaces.request.BaseOpenRequest;
+//import com.xiaoju.open.oil.interfaces.response.QueryStorePriceResponse;
+///*     */ import java.util.List;
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */ public class QueryStorePriceRequest
+///*     */   extends BaseOpenRequest<QueryStorePriceResponse>
+///*     */ {
+///*     */   private List<String> storeIdList;
+///*     */   private Integer openChannel;
+///*     */   private String itemName;
+///*     */   private String mobile;
+///*     */   private String outNewUserFlag;
+///*     */   private Float lon;
+///*     */   private Float lat;
+///*     */
+///*     */   public String getApiMethodName() {
+///*  61 */     return "/energy/v1/queryStorePrice";
+///*     */   }
+///*     */
+///*     */
+///*     */   public void check() throws ApiRuleException {
+///*  66 */     ParamCheckUtils.checkCollectNotEmpty(this.storeIdList, "storeIdList");
+///*  67 */     ParamCheckUtils.checkNotEmpty(this.openChannel, "openChannel");
+///*  68 */     ParamCheckUtils.checkNotEmpty(this.itemName, "itemName");
+///*  69 */     ParamCheckUtils.checkNotEmpty(this.lon, "lon");
+///*  70 */     ParamCheckUtils.checkNotEmpty(this.lat, "lat");
+///*  71 */     ParamCheckUtils.checkMaxListSize(this.storeIdList, 20, "storeIdList");
+///*  72 */     ParamCheckUtils.checkNotEmpty(this.mobile, "mobile");
+///*     */   }
+///*     */
+///*     */
+///*     */   public List<String> getStoreIdList() {
+///*  77 */     return this.storeIdList;
+///*     */   }
+///*     */
+///*     */   public void setStoreIdList(List<String> storeIdList) {
+///*  81 */     this.storeIdList = storeIdList;
+///*     */   }
+///*     */
+///*     */   public Integer getOpenChannel() {
+///*  85 */     return this.openChannel;
+///*     */   }
+///*     */
+///*     */   public void setOpenChannel(Integer openChannel) {
+///*  89 */     this.openChannel = openChannel;
+///*     */   }
+///*     */
+///*     */   public String getItemName() {
+///*  93 */     return this.itemName;
+///*     */   }
+///*     */
+///*     */   public void setItemName(String itemName) {
+///*  97 */     this.itemName = itemName;
+///*     */   }
+///*     */
+///*     */   public String getMobile() {
+///* 101 */     return this.mobile;
+///*     */   }
+///*     */
+///*     */   public void setMobile(String mobile) {
+///* 105 */     this.mobile = mobile;
+///*     */   }
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */   public String getOutNewUserFlag() {
+///* 117 */     return this.outNewUserFlag;
+///*     */   }
+///*     */
+///*     */   public void setOutNewUserFlag(String outNewUserFlag) {
+///* 121 */     this.outNewUserFlag = outNewUserFlag;
+///*     */   }
+///*     */
+///*     */   public Float getLon() {
+///* 125 */     return this.lon;
+///*     */   }
+///*     */
+///*     */   public void setLon(Float lon) {
+///* 129 */     this.lon = lon;
+///*     */   }
+///*     */
+///*     */   public Float getLat() {
+///* 133 */     return this.lat;
+///*     */   }
+///*     */
+///*     */   public void setLat(Float lat) {
+///* 137 */     this.lat = lat;
+///*     */   }
+///*     */ }
+//
+//
+///* Location:              E:\chendu\MicroService\application\SpringBatchService\SpringBatchServiceServer\src\main\resources\lib\oil-sdk-jar-1.0.16.jar!\com\xiaoju\open\oil\interfaces\request\QueryStorePriceRequest.class
+// * Java compiler version: 8 (52.0)
+// * JD-Core Version:       1.1.3
+// */

+ 41 - 41
SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/request/QueryTokenRequest.java

@@ -1,41 +1,41 @@
-/*    */ package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.request;
-/*    */ 
-/*    */ import com.xiaoju.open.oil.commons.exception.ApiRuleException;
-/*    */ import com.xiaoju.open.oil.commons.utils.ParamCheckUtils;
-/*    */ import com.xiaoju.open.oil.interfaces.request.BaseOpenRequest;
-import com.xiaoju.open.oil.interfaces.response.QueryTokenResponse;
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ public class QueryTokenRequest
-/*    */   extends BaseOpenRequest<QueryTokenResponse>
-/*    */ {
-/*    */   private String appSecret;
-/*    */   
-/*    */   public String getApiMethodName() {
-/* 19 */     return "/open/energy/v1/queryToken";
-/*    */   }
-/*    */ 
-/*    */   
-/*    */   public void check() throws ApiRuleException {
-/* 24 */     ParamCheckUtils.checkNotEmpty(this.appSecret, "appSecret");
-/*    */   }
-/*    */   
-/*    */   public String getAppSecret() {
-/* 28 */     return this.appSecret;
-/*    */   }
-/*    */   
-/*    */   public void setAppSecret(String appSecret) {
-/* 32 */     this.appSecret = appSecret;
-/*    */   }
-/*    */ }
-
-
-/* Location:              E:\chendu\MicroService\application\SpringBatchService\SpringBatchServiceServer\src\main\resources\lib\oil-sdk-jar-1.0.16.jar!\com\xiaoju\open\oil\interfaces\request\QueryTokenRequest.class
- * Java compiler version: 8 (52.0)
- * JD-Core Version:       1.1.3
- */
+///*    */ package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.request;
+///*    */
+///*    */ import com.xiaoju.open.oil.commons.exception.ApiRuleException;
+///*    */ import com.xiaoju.open.oil.commons.utils.ParamCheckUtils;
+///*    */ import com.xiaoju.open.oil.interfaces.request.BaseOpenRequest;
+//import com.xiaoju.open.oil.interfaces.response.QueryTokenResponse;
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */ public class QueryTokenRequest
+///*    */   extends BaseOpenRequest<QueryTokenResponse>
+///*    */ {
+///*    */   private String appSecret;
+///*    */
+///*    */   public String getApiMethodName() {
+///* 19 */     return "/open/energy/v1/queryToken";
+///*    */   }
+///*    */
+///*    */
+///*    */   public void check() throws ApiRuleException {
+///* 24 */     ParamCheckUtils.checkNotEmpty(this.appSecret, "appSecret");
+///*    */   }
+///*    */
+///*    */   public String getAppSecret() {
+///* 28 */     return this.appSecret;
+///*    */   }
+///*    */
+///*    */   public void setAppSecret(String appSecret) {
+///* 32 */     this.appSecret = appSecret;
+///*    */   }
+///*    */ }
+//
+//
+///* Location:              E:\chendu\MicroService\application\SpringBatchService\SpringBatchServiceServer\src\main\resources\lib\oil-sdk-jar-1.0.16.jar!\com\xiaoju\open\oil\interfaces\request\QueryTokenRequest.class
+// * Java compiler version: 8 (52.0)
+// * JD-Core Version:       1.1.3
+// */

+ 70 - 70
SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/request/QueryUserAuthRequest.java

@@ -1,70 +1,70 @@
-/*    */ package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.request;
-/*    */ 
-/*    */ import com.xiaoju.open.oil.commons.exception.ApiRuleException;
-/*    */ import com.xiaoju.open.oil.commons.utils.ParamCheckUtils;
-/*    */ import com.xiaoju.open.oil.interfaces.domain.UserAuthHeaderInfo;
-/*    */ import com.xiaoju.open.oil.interfaces.domain.UserAuthRequestInfo;
-/*    */ import com.xiaoju.open.oil.interfaces.request.BaseOpenRequest;
-import com.xiaoju.open.oil.interfaces.response.UserAuthResponse;
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ public class QueryUserAuthRequest
-/*    */   extends BaseOpenRequest<UserAuthResponse>
-/*    */ {
-/*    */   private UserAuthHeaderInfo userAuthHeaderInfo;
-/*    */   private UserAuthRequestInfo userAuthRequestInfo;
-/*    */   
-/*    */   public String getApiMethodName() {
-/* 29 */     return "/am/open/api/user/auth";
-/*    */   }
-/*    */ 
-/*    */   
-/*    */   public void check() throws ApiRuleException {
-/* 34 */     ParamCheckUtils.checkNotEmpty(this.userAuthHeaderInfo, "userAuthHeaderInfo");
-/* 35 */     ParamCheckUtils.checkNotEmpty(this.userAuthRequestInfo, "userAuthRequestInfo");
-/* 36 */     ParamCheckUtils.checkNotEmpty(this.userAuthHeaderInfo.getMethod(), "method");
-/* 37 */     ParamCheckUtils.checkNotEmpty(this.userAuthHeaderInfo.getContentMd5(), "contentMd5");
-/* 38 */     ParamCheckUtils.checkNotEmpty(this.userAuthHeaderInfo.getDate(), "date");
-/* 39 */     ParamCheckUtils.checkNotEmpty(this.userAuthHeaderInfo.getCasKey(), "casKey");
-/* 40 */     ParamCheckUtils.checkNotEmpty(this.userAuthHeaderInfo.getPath(), "path");
-/*    */     
-/* 42 */     ParamCheckUtils.checkNotEmpty(this.userAuthRequestInfo.getEncryptPhone(), "encryptPhone");
-/* 43 */     ParamCheckUtils.checkNotEmpty(this.userAuthRequestInfo.getDeliveryMethod(), "deliveryMethod");
-/* 44 */     ParamCheckUtils.checkNotEmpty(this.userAuthRequestInfo.getOpenChannel(), "openChannel");
-/* 45 */     ParamCheckUtils.checkNotEmpty(this.userAuthRequestInfo.getBizLine(), "bizLine");
-/*    */   }
-/*    */   
-/*    */   public UserAuthHeaderInfo getUserAuthHeaderInfo() {
-/* 49 */     return this.userAuthHeaderInfo;
-/*    */   }
-/*    */   
-/*    */   public void setUserAuthHeaderInfo(UserAuthHeaderInfo userAuthHeaderInfo) {
-/* 53 */     this.userAuthHeaderInfo = userAuthHeaderInfo;
-/*    */   }
-/*    */   
-/*    */   public UserAuthRequestInfo getUserAuthRequestInfo() {
-/* 57 */     return this.userAuthRequestInfo;
-/*    */   }
-/*    */   
-/*    */   public void setUserAuthRequestInfo(UserAuthRequestInfo userAuthRequestInfo) {
-/* 61 */     this.userAuthRequestInfo = userAuthRequestInfo;
-/*    */   }
-/*    */ }
-
-
-/* Location:              E:\chendu\MicroService\application\SpringBatchService\SpringBatchServiceServer\src\main\resources\lib\oil-sdk-jar-1.0.16.jar!\com\xiaoju\open\oil\interfaces\request\QueryUserAuthRequest.class
- * Java compiler version: 8 (52.0)
- * JD-Core Version:       1.1.3
- */
+///*    */ package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.request;
+///*    */
+///*    */ import com.xiaoju.open.oil.commons.exception.ApiRuleException;
+///*    */ import com.xiaoju.open.oil.commons.utils.ParamCheckUtils;
+///*    */ import com.xiaoju.open.oil.interfaces.domain.UserAuthHeaderInfo;
+///*    */ import com.xiaoju.open.oil.interfaces.domain.UserAuthRequestInfo;
+///*    */ import com.xiaoju.open.oil.interfaces.request.BaseOpenRequest;
+//import com.xiaoju.open.oil.interfaces.response.UserAuthResponse;
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */ public class QueryUserAuthRequest
+///*    */   extends BaseOpenRequest<UserAuthResponse>
+///*    */ {
+///*    */   private UserAuthHeaderInfo userAuthHeaderInfo;
+///*    */   private UserAuthRequestInfo userAuthRequestInfo;
+///*    */
+///*    */   public String getApiMethodName() {
+///* 29 */     return "/am/open/api/user/auth";
+///*    */   }
+///*    */
+///*    */
+///*    */   public void check() throws ApiRuleException {
+///* 34 */     ParamCheckUtils.checkNotEmpty(this.userAuthHeaderInfo, "userAuthHeaderInfo");
+///* 35 */     ParamCheckUtils.checkNotEmpty(this.userAuthRequestInfo, "userAuthRequestInfo");
+///* 36 */     ParamCheckUtils.checkNotEmpty(this.userAuthHeaderInfo.getMethod(), "method");
+///* 37 */     ParamCheckUtils.checkNotEmpty(this.userAuthHeaderInfo.getContentMd5(), "contentMd5");
+///* 38 */     ParamCheckUtils.checkNotEmpty(this.userAuthHeaderInfo.getDate(), "date");
+///* 39 */     ParamCheckUtils.checkNotEmpty(this.userAuthHeaderInfo.getCasKey(), "casKey");
+///* 40 */     ParamCheckUtils.checkNotEmpty(this.userAuthHeaderInfo.getPath(), "path");
+///*    */
+///* 42 */     ParamCheckUtils.checkNotEmpty(this.userAuthRequestInfo.getEncryptPhone(), "encryptPhone");
+///* 43 */     ParamCheckUtils.checkNotEmpty(this.userAuthRequestInfo.getDeliveryMethod(), "deliveryMethod");
+///* 44 */     ParamCheckUtils.checkNotEmpty(this.userAuthRequestInfo.getOpenChannel(), "openChannel");
+///* 45 */     ParamCheckUtils.checkNotEmpty(this.userAuthRequestInfo.getBizLine(), "bizLine");
+///*    */   }
+///*    */
+///*    */   public UserAuthHeaderInfo getUserAuthHeaderInfo() {
+///* 49 */     return this.userAuthHeaderInfo;
+///*    */   }
+///*    */
+///*    */   public void setUserAuthHeaderInfo(UserAuthHeaderInfo userAuthHeaderInfo) {
+///* 53 */     this.userAuthHeaderInfo = userAuthHeaderInfo;
+///*    */   }
+///*    */
+///*    */   public UserAuthRequestInfo getUserAuthRequestInfo() {
+///* 57 */     return this.userAuthRequestInfo;
+///*    */   }
+///*    */
+///*    */   public void setUserAuthRequestInfo(UserAuthRequestInfo userAuthRequestInfo) {
+///* 61 */     this.userAuthRequestInfo = userAuthRequestInfo;
+///*    */   }
+///*    */ }
+//
+//
+///* Location:              E:\chendu\MicroService\application\SpringBatchService\SpringBatchServiceServer\src\main\resources\lib\oil-sdk-jar-1.0.16.jar!\com\xiaoju\open\oil\interfaces\request\QueryUserAuthRequest.class
+// * Java compiler version: 8 (52.0)
+// * JD-Core Version:       1.1.3
+// */

+ 128 - 128
SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/request/QueryUserPromotionListRequest.java

@@ -1,128 +1,128 @@
-/*     */ package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.request;
-/*     */ 
-/*     */ import com.xiaoju.open.oil.commons.exception.ApiRuleException;
-/*     */ import com.xiaoju.open.oil.commons.utils.ParamCheckUtils;
-/*     */ import com.xiaoju.open.oil.interfaces.request.BaseOpenRequest;
-import com.xiaoju.open.oil.interfaces.response.QueryUserPromotionListResponse;
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ public class QueryUserPromotionListRequest
-/*     */   extends BaseOpenRequest<QueryUserPromotionListResponse>
-/*     */ {
-/*     */   private String mobile;
-/*     */   private String outUserId;
-/*     */   private Integer orderAmount;
-/*     */   private Integer allowanceType;
-/*     */   private Integer status;
-/*     */   private Integer pageIndex;
-/*     */   private Integer pageSize;
-/*     */   
-/*     */   public String getApiMethodName() {
-/*  53 */     return "/open/energy/v1/queryUserPromotionList";
-/*     */   }
-/*     */ 
-/*     */   
-/*     */   public void check() throws ApiRuleException {
-/*  58 */     ParamCheckUtils.checkNotEmpty(this.mobile, "mobile");
-/*  59 */     ParamCheckUtils.checkNotEmpty(this.outUserId, "outUserId");
-/*  60 */     ParamCheckUtils.checkNotEmpty(this.allowanceType, "allowanceType");
-/*  61 */     ParamCheckUtils.checkNotEmpty(this.status, "status");
-/*  62 */     ParamCheckUtils.checkNotEmpty(this.pageIndex, "pageIndex");
-/*  63 */     ParamCheckUtils.checkNotEmpty(this.pageSize, "pageSize");
-/*     */   }
-/*     */   
-/*     */   public String getMobile() {
-/*  67 */     return this.mobile;
-/*     */   }
-/*     */   
-/*     */   public void setMobile(String mobile) {
-/*  71 */     this.mobile = mobile;
-/*     */   }
-/*     */   
-/*     */   public String getOutUserId() {
-/*  75 */     return this.outUserId;
-/*     */   }
-/*     */   
-/*     */   public void setOutUserId(String outUserId) {
-/*  79 */     this.outUserId = outUserId;
-/*     */   }
-/*     */   
-/*     */   public Integer getOrderAmount() {
-/*  83 */     return this.orderAmount;
-/*     */   }
-/*     */   
-/*     */   public void setOrderAmount(Integer orderAmount) {
-/*  87 */     this.orderAmount = orderAmount;
-/*     */   }
-/*     */   
-/*     */   public Integer getAllowanceType() {
-/*  91 */     return this.allowanceType;
-/*     */   }
-/*     */   
-/*     */   public void setAllowanceType(Integer allowanceType) {
-/*  95 */     this.allowanceType = allowanceType;
-/*     */   }
-/*     */   
-/*     */   public Integer getStatus() {
-/*  99 */     return this.status;
-/*     */   }
-/*     */   
-/*     */   public void setStatus(Integer status) {
-/* 103 */     this.status = status;
-/*     */   }
-/*     */   
-/*     */   public Integer getPageIndex() {
-/* 107 */     return this.pageIndex;
-/*     */   }
-/*     */   
-/*     */   public void setPageIndex(Integer pageIndex) {
-/* 111 */     this.pageIndex = pageIndex;
-/*     */   }
-/*     */   
-/*     */   public Integer getPageSize() {
-/* 115 */     return this.pageSize;
-/*     */   }
-/*     */   
-/*     */   public void setPageSize(Integer pageSize) {
-/* 119 */     this.pageSize = pageSize;
-/*     */   }
-/*     */ }
-
-
-/* Location:              E:\chendu\MicroService\application\SpringBatchService\SpringBatchServiceServer\src\main\resources\lib\oil-sdk-jar-1.0.16.jar!\com\xiaoju\open\oil\interfaces\request\QueryUserPromotionListRequest.class
- * Java compiler version: 8 (52.0)
- * JD-Core Version:       1.1.3
- */
+///*     */ package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.request;
+///*     */
+///*     */ import com.xiaoju.open.oil.commons.exception.ApiRuleException;
+///*     */ import com.xiaoju.open.oil.commons.utils.ParamCheckUtils;
+///*     */ import com.xiaoju.open.oil.interfaces.request.BaseOpenRequest;
+//import com.xiaoju.open.oil.interfaces.response.QueryUserPromotionListResponse;
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */ public class QueryUserPromotionListRequest
+///*     */   extends BaseOpenRequest<QueryUserPromotionListResponse>
+///*     */ {
+///*     */   private String mobile;
+///*     */   private String outUserId;
+///*     */   private Integer orderAmount;
+///*     */   private Integer allowanceType;
+///*     */   private Integer status;
+///*     */   private Integer pageIndex;
+///*     */   private Integer pageSize;
+///*     */
+///*     */   public String getApiMethodName() {
+///*  53 */     return "/open/energy/v1/queryUserPromotionList";
+///*     */   }
+///*     */
+///*     */
+///*     */   public void check() throws ApiRuleException {
+///*  58 */     ParamCheckUtils.checkNotEmpty(this.mobile, "mobile");
+///*  59 */     ParamCheckUtils.checkNotEmpty(this.outUserId, "outUserId");
+///*  60 */     ParamCheckUtils.checkNotEmpty(this.allowanceType, "allowanceType");
+///*  61 */     ParamCheckUtils.checkNotEmpty(this.status, "status");
+///*  62 */     ParamCheckUtils.checkNotEmpty(this.pageIndex, "pageIndex");
+///*  63 */     ParamCheckUtils.checkNotEmpty(this.pageSize, "pageSize");
+///*     */   }
+///*     */
+///*     */   public String getMobile() {
+///*  67 */     return this.mobile;
+///*     */   }
+///*     */
+///*     */   public void setMobile(String mobile) {
+///*  71 */     this.mobile = mobile;
+///*     */   }
+///*     */
+///*     */   public String getOutUserId() {
+///*  75 */     return this.outUserId;
+///*     */   }
+///*     */
+///*     */   public void setOutUserId(String outUserId) {
+///*  79 */     this.outUserId = outUserId;
+///*     */   }
+///*     */
+///*     */   public Integer getOrderAmount() {
+///*  83 */     return this.orderAmount;
+///*     */   }
+///*     */
+///*     */   public void setOrderAmount(Integer orderAmount) {
+///*  87 */     this.orderAmount = orderAmount;
+///*     */   }
+///*     */
+///*     */   public Integer getAllowanceType() {
+///*  91 */     return this.allowanceType;
+///*     */   }
+///*     */
+///*     */   public void setAllowanceType(Integer allowanceType) {
+///*  95 */     this.allowanceType = allowanceType;
+///*     */   }
+///*     */
+///*     */   public Integer getStatus() {
+///*  99 */     return this.status;
+///*     */   }
+///*     */
+///*     */   public void setStatus(Integer status) {
+///* 103 */     this.status = status;
+///*     */   }
+///*     */
+///*     */   public Integer getPageIndex() {
+///* 107 */     return this.pageIndex;
+///*     */   }
+///*     */
+///*     */   public void setPageIndex(Integer pageIndex) {
+///* 111 */     this.pageIndex = pageIndex;
+///*     */   }
+///*     */
+///*     */   public Integer getPageSize() {
+///* 115 */     return this.pageSize;
+///*     */   }
+///*     */
+///*     */   public void setPageSize(Integer pageSize) {
+///* 119 */     this.pageSize = pageSize;
+///*     */   }
+///*     */ }
+//
+//
+///* Location:              E:\chendu\MicroService\application\SpringBatchService\SpringBatchServiceServer\src\main\resources\lib\oil-sdk-jar-1.0.16.jar!\com\xiaoju\open\oil\interfaces\request\QueryUserPromotionListRequest.class
+// * Java compiler version: 8 (52.0)
+// * JD-Core Version:       1.1.3
+// */

+ 21 - 21
SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/response/QueryApiStoreListResponse.java

@@ -1,21 +1,21 @@
-package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.response;
-
-import com.xiaoju.open.oil.interfaces.domain.OpenStoreInfo;
-import lombok.AllArgsConstructor;
-import lombok.Data;
-import lombok.NoArgsConstructor;
-
-import java.util.List;
-
-@Data
-@NoArgsConstructor
-@AllArgsConstructor
-public class QueryApiStoreListResponse {
-    private Integer pageIndex;
-    private Integer pageSize;
-    private Long totalSize;
-    private Integer totalPage;
-    private List<OpenStoreInfo> data;
-
-}
-
+//package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.response;
+//
+//import com.xiaoju.open.oil.interfaces.domain.OpenStoreInfo;
+//import lombok.AllArgsConstructor;
+//import lombok.Data;
+//import lombok.NoArgsConstructor;
+//
+//import java.util.List;
+//
+//@Data
+//@NoArgsConstructor
+//@AllArgsConstructor
+//public class QueryApiStoreListResponse {
+//    private Integer pageIndex;
+//    private Integer pageSize;
+//    private Long totalSize;
+//    private Integer totalPage;
+//    private List<OpenStoreInfo> data;
+//
+//}
+//

+ 35 - 35
SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/response/QueryApiStorePriceV2Response.java

@@ -1,35 +1,35 @@
-/*    */ package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.response;
-/*    */ 
-/*    */ import com.xiaoju.open.oil.commons.OpenResponse;
-import com.xiaoju.open.oil.interfaces.response.QueryApiStorePriceResponse;
-/*    */ import java.util.List;
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ public class QueryApiStorePriceV2Response
-/*    */   extends OpenResponse
-/*    */ {
-/*    */   private List<com.xiaoju.open.oil.interfaces.response.QueryApiStorePriceResponse> queryApiStorePriceResponses;
-/*    */   
-/*    */   public List<com.xiaoju.open.oil.interfaces.response.QueryApiStorePriceResponse> getQueryApiStorePriceResponses() {
-/* 22 */     return this.queryApiStorePriceResponses;
-/*    */   }
-/*    */   
-/*    */   public void setQueryApiStorePriceResponses(List<QueryApiStorePriceResponse> queryApiStorePriceResponses) {
-/* 26 */     this.queryApiStorePriceResponses = queryApiStorePriceResponses;
-/*    */   }
-/*    */ }
-
-
-/* Location:              E:\chendu\MicroService\application\SpringBatchService\SpringBatchServiceServer\src\main\resources\lib\oil-sdk-jar-1.0.16.jar!\com\xiaoju\open\oil\interfaces\response\QueryApiStorePriceV2Response.class
- * Java compiler version: 8 (52.0)
- * JD-Core Version:       1.1.3
- */
+///*    */ package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.response;
+///*    */
+///*    */ import com.xiaoju.open.oil.commons.OpenResponse;
+//import com.xiaoju.open.oil.interfaces.response.QueryApiStorePriceResponse;
+///*    */ import java.util.List;
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */ public class QueryApiStorePriceV2Response
+///*    */   extends OpenResponse
+///*    */ {
+///*    */   private List<com.xiaoju.open.oil.interfaces.response.QueryApiStorePriceResponse> queryApiStorePriceResponses;
+///*    */
+///*    */   public List<com.xiaoju.open.oil.interfaces.response.QueryApiStorePriceResponse> getQueryApiStorePriceResponses() {
+///* 22 */     return this.queryApiStorePriceResponses;
+///*    */   }
+///*    */
+///*    */   public void setQueryApiStorePriceResponses(List<QueryApiStorePriceResponse> queryApiStorePriceResponses) {
+///* 26 */     this.queryApiStorePriceResponses = queryApiStorePriceResponses;
+///*    */   }
+///*    */ }
+//
+//
+///* Location:              E:\chendu\MicroService\application\SpringBatchService\SpringBatchServiceServer\src\main\resources\lib\oil-sdk-jar-1.0.16.jar!\com\xiaoju\open\oil\interfaces\response\QueryApiStorePriceV2Response.class
+// * Java compiler version: 8 (52.0)
+// * JD-Core Version:       1.1.3
+// */

+ 30 - 30
SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/response/QueryEnergyUrlResponse.java

@@ -1,30 +1,30 @@
-/*    */ package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.response;
-/*    */ 
-/*    */ import com.xiaoju.open.oil.commons.OpenResponse;
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ public class QueryEnergyUrlResponse
-/*    */   extends OpenResponse
-/*    */ {
-/*    */   private String link;
-/*    */   
-/*    */   public String getLink() {
-/* 18 */     return this.link;
-/*    */   }
-/*    */   
-/*    */   public void setLink(String link) {
-/* 22 */     this.link = link;
-/*    */   }
-/*    */ }
-
-
-/* Location:              E:\chendu\MicroService\application\SpringBatchService\SpringBatchServiceServer\src\main\resources\lib\oil-sdk-jar-1.0.16.jar!\com\xiaoju\open\oil\interfaces\response\QueryEnergyUrlResponse.class
- * Java compiler version: 8 (52.0)
- * JD-Core Version:       1.1.3
- */
+///*    */ package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.response;
+///*    */
+///*    */ import com.xiaoju.open.oil.commons.OpenResponse;
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */ public class QueryEnergyUrlResponse
+///*    */   extends OpenResponse
+///*    */ {
+///*    */   private String link;
+///*    */
+///*    */   public String getLink() {
+///* 18 */     return this.link;
+///*    */   }
+///*    */
+///*    */   public void setLink(String link) {
+///* 22 */     this.link = link;
+///*    */   }
+///*    */ }
+//
+//
+///* Location:              E:\chendu\MicroService\application\SpringBatchService\SpringBatchServiceServer\src\main\resources\lib\oil-sdk-jar-1.0.16.jar!\com\xiaoju\open\oil\interfaces\response\QueryEnergyUrlResponse.class
+// * Java compiler version: 8 (52.0)
+// * JD-Core Version:       1.1.3
+// */

+ 357 - 357
SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/response/QueryOrderInfoResponse.java

@@ -1,357 +1,357 @@
-/*     */ package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.response;
-/*     */ 
-/*     */ import com.xiaoju.open.oil.commons.OpenResponse;
-/*     */ import com.xiaoju.open.oil.interfaces.domain.PayCodeInfo;
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ 
-/*     */ public class QueryOrderInfoResponse
-/*     */   extends OpenResponse
-/*     */ {
-/*     */   private String outUserId;
-/*     */   private String orderId;
-/*     */   private String cityId;
-/*     */   private String cityName;
-/*     */   private String storeId;
-/*     */   private String storeName;
-/*     */   private String itemName;
-/*     */   private String gunNo;
-/*     */   private Float quantity;
-/*     */   private Integer totalMoney;
-/*     */   private Integer realMoney;
-/*     */   private Integer serviceFee;
-/*     */   private Integer payStatus;
-/*     */   private String payTime;
-/*     */   private Integer refundStatus;
-/*     */   private String refundTime;
-/*     */   private Integer sourceCode;
-/*     */   private String outOrderId;
-/*     */   private Integer orderStatus;
-/*     */   private String orderTime;
-/*     */   private Integer payType;
-/*     */   private String extraForOpen;
-/*     */   private Integer unitPrice;
-/*     */   private String openInfo;
-/*     */   private PayCodeInfo payCodeDTO;
-/*     */   private Integer billingType;
-/*     */   
-/*     */   public String getOutUserId() {
-/* 145 */     return this.outUserId;
-/*     */   }
-/*     */   
-/*     */   public void setOutUserId(String outUserId) {
-/* 149 */     this.outUserId = outUserId;
-/*     */   }
-/*     */   
-/*     */   public String getOrderId() {
-/* 153 */     return this.orderId;
-/*     */   }
-/*     */   
-/*     */   public void setOrderId(String orderId) {
-/* 157 */     this.orderId = orderId;
-/*     */   }
-/*     */   
-/*     */   public String getCityId() {
-/* 161 */     return this.cityId;
-/*     */   }
-/*     */   
-/*     */   public void setCityId(String cityId) {
-/* 165 */     this.cityId = cityId;
-/*     */   }
-/*     */   
-/*     */   public String getCityName() {
-/* 169 */     return this.cityName;
-/*     */   }
-/*     */   
-/*     */   public void setCityName(String cityName) {
-/* 173 */     this.cityName = cityName;
-/*     */   }
-/*     */   
-/*     */   public String getStoreId() {
-/* 177 */     return this.storeId;
-/*     */   }
-/*     */   
-/*     */   public void setStoreId(String storeId) {
-/* 181 */     this.storeId = storeId;
-/*     */   }
-/*     */   
-/*     */   public String getStoreName() {
-/* 185 */     return this.storeName;
-/*     */   }
-/*     */   
-/*     */   public void setStoreName(String storeName) {
-/* 189 */     this.storeName = storeName;
-/*     */   }
-/*     */   
-/*     */   public String getItemName() {
-/* 193 */     return this.itemName;
-/*     */   }
-/*     */   
-/*     */   public void setItemName(String itemName) {
-/* 197 */     this.itemName = itemName;
-/*     */   }
-/*     */   
-/*     */   public String getGunNo() {
-/* 201 */     return this.gunNo;
-/*     */   }
-/*     */   
-/*     */   public void setGunNo(String gunNo) {
-/* 205 */     this.gunNo = gunNo;
-/*     */   }
-/*     */   
-/*     */   public Float getQuantity() {
-/* 209 */     return this.quantity;
-/*     */   }
-/*     */   
-/*     */   public void setQuantity(Float quantity) {
-/* 213 */     this.quantity = quantity;
-/*     */   }
-/*     */   
-/*     */   public Integer getTotalMoney() {
-/* 217 */     return this.totalMoney;
-/*     */   }
-/*     */   
-/*     */   public void setTotalMoney(Integer totalMoney) {
-/* 221 */     this.totalMoney = totalMoney;
-/*     */   }
-/*     */   
-/*     */   public Integer getRealMoney() {
-/* 225 */     return this.realMoney;
-/*     */   }
-/*     */   
-/*     */   public void setRealMoney(Integer realMoney) {
-/* 229 */     this.realMoney = realMoney;
-/*     */   }
-/*     */   
-/*     */   public Integer getServiceFee() {
-/* 233 */     return this.serviceFee;
-/*     */   }
-/*     */   
-/*     */   public void setServiceFee(Integer serviceFee) {
-/* 237 */     this.serviceFee = serviceFee;
-/*     */   }
-/*     */   
-/*     */   public Integer getPayStatus() {
-/* 241 */     return this.payStatus;
-/*     */   }
-/*     */   
-/*     */   public void setPayStatus(Integer payStatus) {
-/* 245 */     this.payStatus = payStatus;
-/*     */   }
-/*     */   
-/*     */   public String getPayTime() {
-/* 249 */     return this.payTime;
-/*     */   }
-/*     */   
-/*     */   public void setPayTime(String payTime) {
-/* 253 */     this.payTime = payTime;
-/*     */   }
-/*     */   
-/*     */   public Integer getRefundStatus() {
-/* 257 */     return this.refundStatus;
-/*     */   }
-/*     */   
-/*     */   public void setRefundStatus(Integer refundStatus) {
-/* 261 */     this.refundStatus = refundStatus;
-/*     */   }
-/*     */   
-/*     */   public String getRefundTime() {
-/* 265 */     return this.refundTime;
-/*     */   }
-/*     */   
-/*     */   public void setRefundTime(String refundTime) {
-/* 269 */     this.refundTime = refundTime;
-/*     */   }
-/*     */   
-/*     */   public Integer getSourceCode() {
-/* 273 */     return this.sourceCode;
-/*     */   }
-/*     */   
-/*     */   public void setSourceCode(Integer sourceCode) {
-/* 277 */     this.sourceCode = sourceCode;
-/*     */   }
-/*     */   
-/*     */   public String getOutOrderId() {
-/* 281 */     return this.outOrderId;
-/*     */   }
-/*     */   
-/*     */   public void setOutOrderId(String outOrderId) {
-/* 285 */     this.outOrderId = outOrderId;
-/*     */   }
-/*     */   
-/*     */   public Integer getOrderStatus() {
-/* 289 */     return this.orderStatus;
-/*     */   }
-/*     */   
-/*     */   public void setOrderStatus(Integer orderStatus) {
-/* 293 */     this.orderStatus = orderStatus;
-/*     */   }
-/*     */   
-/*     */   public String getOrderTime() {
-/* 297 */     return this.orderTime;
-/*     */   }
-/*     */   
-/*     */   public void setOrderTime(String orderTime) {
-/* 301 */     this.orderTime = orderTime;
-/*     */   }
-/*     */   
-/*     */   public Integer getPayType() {
-/* 305 */     return this.payType;
-/*     */   }
-/*     */   
-/*     */   public void setPayType(Integer payType) {
-/* 309 */     this.payType = payType;
-/*     */   }
-/*     */   
-/*     */   public String getExtraForOpen() {
-/* 313 */     return this.extraForOpen;
-/*     */   }
-/*     */   
-/*     */   public void setExtraForOpen(String extraForOpen) {
-/* 317 */     this.extraForOpen = extraForOpen;
-/*     */   }
-/*     */   
-/*     */   public Integer getUnitPrice() {
-/* 321 */     return this.unitPrice;
-/*     */   }
-/*     */   
-/*     */   public void setUnitPrice(Integer unitPrice) {
-/* 325 */     this.unitPrice = unitPrice;
-/*     */   }
-/*     */   
-/*     */   public String getOpenInfo() {
-/* 329 */     return this.openInfo;
-/*     */   }
-/*     */   
-/*     */   public void setOpenInfo(String openInfo) {
-/* 333 */     this.openInfo = openInfo;
-/*     */   }
-/*     */   
-/*     */   public PayCodeInfo getPayCodeDTO() {
-/* 337 */     return this.payCodeDTO;
-/*     */   }
-/*     */   
-/*     */   public void setPayCodeDTO(PayCodeInfo payCodeDTO) {
-/* 341 */     this.payCodeDTO = payCodeDTO;
-/*     */   }
-/*     */   
-/*     */   public Integer getBillingType() {
-/* 345 */     return this.billingType;
-/*     */   }
-/*     */   
-/*     */   public void setBillingType(Integer billingType) {
-/* 349 */     this.billingType = billingType;
-/*     */   }
-/*     */ }
-
-
-/* Location:              E:\chendu\MicroService\application\SpringBatchService\SpringBatchServiceServer\src\main\resources\lib\oil-sdk-jar-1.0.16.jar!\com\xiaoju\open\oil\interfaces\response\QueryOrderInfoResponse.class
- * Java compiler version: 8 (52.0)
- * JD-Core Version:       1.1.3
- */
+///*     */ package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.response;
+///*     */
+///*     */ import com.xiaoju.open.oil.commons.OpenResponse;
+///*     */ import com.xiaoju.open.oil.interfaces.domain.PayCodeInfo;
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */
+///*     */ public class QueryOrderInfoResponse
+///*     */   extends OpenResponse
+///*     */ {
+///*     */   private String outUserId;
+///*     */   private String orderId;
+///*     */   private String cityId;
+///*     */   private String cityName;
+///*     */   private String storeId;
+///*     */   private String storeName;
+///*     */   private String itemName;
+///*     */   private String gunNo;
+///*     */   private Float quantity;
+///*     */   private Integer totalMoney;
+///*     */   private Integer realMoney;
+///*     */   private Integer serviceFee;
+///*     */   private Integer payStatus;
+///*     */   private String payTime;
+///*     */   private Integer refundStatus;
+///*     */   private String refundTime;
+///*     */   private Integer sourceCode;
+///*     */   private String outOrderId;
+///*     */   private Integer orderStatus;
+///*     */   private String orderTime;
+///*     */   private Integer payType;
+///*     */   private String extraForOpen;
+///*     */   private Integer unitPrice;
+///*     */   private String openInfo;
+///*     */   private PayCodeInfo payCodeDTO;
+///*     */   private Integer billingType;
+///*     */
+///*     */   public String getOutUserId() {
+///* 145 */     return this.outUserId;
+///*     */   }
+///*     */
+///*     */   public void setOutUserId(String outUserId) {
+///* 149 */     this.outUserId = outUserId;
+///*     */   }
+///*     */
+///*     */   public String getOrderId() {
+///* 153 */     return this.orderId;
+///*     */   }
+///*     */
+///*     */   public void setOrderId(String orderId) {
+///* 157 */     this.orderId = orderId;
+///*     */   }
+///*     */
+///*     */   public String getCityId() {
+///* 161 */     return this.cityId;
+///*     */   }
+///*     */
+///*     */   public void setCityId(String cityId) {
+///* 165 */     this.cityId = cityId;
+///*     */   }
+///*     */
+///*     */   public String getCityName() {
+///* 169 */     return this.cityName;
+///*     */   }
+///*     */
+///*     */   public void setCityName(String cityName) {
+///* 173 */     this.cityName = cityName;
+///*     */   }
+///*     */
+///*     */   public String getStoreId() {
+///* 177 */     return this.storeId;
+///*     */   }
+///*     */
+///*     */   public void setStoreId(String storeId) {
+///* 181 */     this.storeId = storeId;
+///*     */   }
+///*     */
+///*     */   public String getStoreName() {
+///* 185 */     return this.storeName;
+///*     */   }
+///*     */
+///*     */   public void setStoreName(String storeName) {
+///* 189 */     this.storeName = storeName;
+///*     */   }
+///*     */
+///*     */   public String getItemName() {
+///* 193 */     return this.itemName;
+///*     */   }
+///*     */
+///*     */   public void setItemName(String itemName) {
+///* 197 */     this.itemName = itemName;
+///*     */   }
+///*     */
+///*     */   public String getGunNo() {
+///* 201 */     return this.gunNo;
+///*     */   }
+///*     */
+///*     */   public void setGunNo(String gunNo) {
+///* 205 */     this.gunNo = gunNo;
+///*     */   }
+///*     */
+///*     */   public Float getQuantity() {
+///* 209 */     return this.quantity;
+///*     */   }
+///*     */
+///*     */   public void setQuantity(Float quantity) {
+///* 213 */     this.quantity = quantity;
+///*     */   }
+///*     */
+///*     */   public Integer getTotalMoney() {
+///* 217 */     return this.totalMoney;
+///*     */   }
+///*     */
+///*     */   public void setTotalMoney(Integer totalMoney) {
+///* 221 */     this.totalMoney = totalMoney;
+///*     */   }
+///*     */
+///*     */   public Integer getRealMoney() {
+///* 225 */     return this.realMoney;
+///*     */   }
+///*     */
+///*     */   public void setRealMoney(Integer realMoney) {
+///* 229 */     this.realMoney = realMoney;
+///*     */   }
+///*     */
+///*     */   public Integer getServiceFee() {
+///* 233 */     return this.serviceFee;
+///*     */   }
+///*     */
+///*     */   public void setServiceFee(Integer serviceFee) {
+///* 237 */     this.serviceFee = serviceFee;
+///*     */   }
+///*     */
+///*     */   public Integer getPayStatus() {
+///* 241 */     return this.payStatus;
+///*     */   }
+///*     */
+///*     */   public void setPayStatus(Integer payStatus) {
+///* 245 */     this.payStatus = payStatus;
+///*     */   }
+///*     */
+///*     */   public String getPayTime() {
+///* 249 */     return this.payTime;
+///*     */   }
+///*     */
+///*     */   public void setPayTime(String payTime) {
+///* 253 */     this.payTime = payTime;
+///*     */   }
+///*     */
+///*     */   public Integer getRefundStatus() {
+///* 257 */     return this.refundStatus;
+///*     */   }
+///*     */
+///*     */   public void setRefundStatus(Integer refundStatus) {
+///* 261 */     this.refundStatus = refundStatus;
+///*     */   }
+///*     */
+///*     */   public String getRefundTime() {
+///* 265 */     return this.refundTime;
+///*     */   }
+///*     */
+///*     */   public void setRefundTime(String refundTime) {
+///* 269 */     this.refundTime = refundTime;
+///*     */   }
+///*     */
+///*     */   public Integer getSourceCode() {
+///* 273 */     return this.sourceCode;
+///*     */   }
+///*     */
+///*     */   public void setSourceCode(Integer sourceCode) {
+///* 277 */     this.sourceCode = sourceCode;
+///*     */   }
+///*     */
+///*     */   public String getOutOrderId() {
+///* 281 */     return this.outOrderId;
+///*     */   }
+///*     */
+///*     */   public void setOutOrderId(String outOrderId) {
+///* 285 */     this.outOrderId = outOrderId;
+///*     */   }
+///*     */
+///*     */   public Integer getOrderStatus() {
+///* 289 */     return this.orderStatus;
+///*     */   }
+///*     */
+///*     */   public void setOrderStatus(Integer orderStatus) {
+///* 293 */     this.orderStatus = orderStatus;
+///*     */   }
+///*     */
+///*     */   public String getOrderTime() {
+///* 297 */     return this.orderTime;
+///*     */   }
+///*     */
+///*     */   public void setOrderTime(String orderTime) {
+///* 301 */     this.orderTime = orderTime;
+///*     */   }
+///*     */
+///*     */   public Integer getPayType() {
+///* 305 */     return this.payType;
+///*     */   }
+///*     */
+///*     */   public void setPayType(Integer payType) {
+///* 309 */     this.payType = payType;
+///*     */   }
+///*     */
+///*     */   public String getExtraForOpen() {
+///* 313 */     return this.extraForOpen;
+///*     */   }
+///*     */
+///*     */   public void setExtraForOpen(String extraForOpen) {
+///* 317 */     this.extraForOpen = extraForOpen;
+///*     */   }
+///*     */
+///*     */   public Integer getUnitPrice() {
+///* 321 */     return this.unitPrice;
+///*     */   }
+///*     */
+///*     */   public void setUnitPrice(Integer unitPrice) {
+///* 325 */     this.unitPrice = unitPrice;
+///*     */   }
+///*     */
+///*     */   public String getOpenInfo() {
+///* 329 */     return this.openInfo;
+///*     */   }
+///*     */
+///*     */   public void setOpenInfo(String openInfo) {
+///* 333 */     this.openInfo = openInfo;
+///*     */   }
+///*     */
+///*     */   public PayCodeInfo getPayCodeDTO() {
+///* 337 */     return this.payCodeDTO;
+///*     */   }
+///*     */
+///*     */   public void setPayCodeDTO(PayCodeInfo payCodeDTO) {
+///* 341 */     this.payCodeDTO = payCodeDTO;
+///*     */   }
+///*     */
+///*     */   public Integer getBillingType() {
+///* 345 */     return this.billingType;
+///*     */   }
+///*     */
+///*     */   public void setBillingType(Integer billingType) {
+///* 349 */     this.billingType = billingType;
+///*     */   }
+///*     */ }
+//
+//
+///* Location:              E:\chendu\MicroService\application\SpringBatchService\SpringBatchServiceServer\src\main\resources\lib\oil-sdk-jar-1.0.16.jar!\com\xiaoju\open\oil\interfaces\response\QueryOrderInfoResponse.class
+// * Java compiler version: 8 (52.0)
+// * JD-Core Version:       1.1.3
+// */

+ 72 - 72
SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/response/QueryOrderListResponse.java

@@ -1,72 +1,72 @@
-/*    */ package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.response;
-/*    */ 
-/*    */ import com.xiaoju.open.oil.commons.OpenResponse;
-/*    */ import com.xiaoju.open.oil.interfaces.domain.QueryOrderInfo;
-/*    */ import java.util.List;
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ public class QueryOrderListResponse
-/*    */   extends OpenResponse
-/*    */ {
-/*    */   private int pageIndex;
-/*    */   private int pageSize;
-/*    */   private int totalSize;
-/*    */   private List<QueryOrderInfo> orderInfoList;
-/*    */   
-/*    */   public int getPageIndex() {
-/* 36 */     return this.pageIndex;
-/*    */   }
-/*    */   
-/*    */   public void setPageIndex(int pageIndex) {
-/* 40 */     this.pageIndex = pageIndex;
-/*    */   }
-/*    */   
-/*    */   public int getPageSize() {
-/* 44 */     return this.pageSize;
-/*    */   }
-/*    */   
-/*    */   public void setPageSize(int pageSize) {
-/* 48 */     this.pageSize = pageSize;
-/*    */   }
-/*    */   
-/*    */   public int getTotalSize() {
-/* 52 */     return this.totalSize;
-/*    */   }
-/*    */   
-/*    */   public void setTotalSize(int totalSize) {
-/* 56 */     this.totalSize = totalSize;
-/*    */   }
-/*    */   
-/*    */   public List<QueryOrderInfo> getOrderInfoList() {
-/* 60 */     return this.orderInfoList;
-/*    */   }
-/*    */   
-/*    */   public void setOrderInfoList(List<QueryOrderInfo> orderInfoList) {
-/* 64 */     this.orderInfoList = orderInfoList;
-/*    */   }
-/*    */ }
-
-
-/* Location:              E:\chendu\MicroService\application\SpringBatchService\SpringBatchServiceServer\src\main\resources\lib\oil-sdk-jar-1.0.16.jar!\com\xiaoju\open\oil\interfaces\response\QueryOrderListResponse.class
- * Java compiler version: 8 (52.0)
- * JD-Core Version:       1.1.3
- */
+///*    */ package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.response;
+///*    */
+///*    */ import com.xiaoju.open.oil.commons.OpenResponse;
+///*    */ import com.xiaoju.open.oil.interfaces.domain.QueryOrderInfo;
+///*    */ import java.util.List;
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */ public class QueryOrderListResponse
+///*    */   extends OpenResponse
+///*    */ {
+///*    */   private int pageIndex;
+///*    */   private int pageSize;
+///*    */   private int totalSize;
+///*    */   private List<QueryOrderInfo> orderInfoList;
+///*    */
+///*    */   public int getPageIndex() {
+///* 36 */     return this.pageIndex;
+///*    */   }
+///*    */
+///*    */   public void setPageIndex(int pageIndex) {
+///* 40 */     this.pageIndex = pageIndex;
+///*    */   }
+///*    */
+///*    */   public int getPageSize() {
+///* 44 */     return this.pageSize;
+///*    */   }
+///*    */
+///*    */   public void setPageSize(int pageSize) {
+///* 48 */     this.pageSize = pageSize;
+///*    */   }
+///*    */
+///*    */   public int getTotalSize() {
+///* 52 */     return this.totalSize;
+///*    */   }
+///*    */
+///*    */   public void setTotalSize(int totalSize) {
+///* 56 */     this.totalSize = totalSize;
+///*    */   }
+///*    */
+///*    */   public List<QueryOrderInfo> getOrderInfoList() {
+///* 60 */     return this.orderInfoList;
+///*    */   }
+///*    */
+///*    */   public void setOrderInfoList(List<QueryOrderInfo> orderInfoList) {
+///* 64 */     this.orderInfoList = orderInfoList;
+///*    */   }
+///*    */ }
+//
+//
+///* Location:              E:\chendu\MicroService\application\SpringBatchService\SpringBatchServiceServer\src\main\resources\lib\oil-sdk-jar-1.0.16.jar!\com\xiaoju\open\oil\interfaces\response\QueryOrderListResponse.class
+// * Java compiler version: 8 (52.0)
+// * JD-Core Version:       1.1.3
+// */

+ 72 - 72
SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/response/QueryStoreListResponse.java

@@ -1,72 +1,72 @@
-/*    */ package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.response;
-/*    */ 
-/*    */ import com.xiaoju.open.oil.commons.OpenResponse;
-/*    */ import com.xiaoju.open.oil.interfaces.domain.StoreInfo;
-/*    */ import java.util.List;
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ public class QueryStoreListResponse
-/*    */   extends OpenResponse
-/*    */ {
-/*    */   private int pageIndex;
-/*    */   private int pageSize;
-/*    */   private int totalSize;
-/*    */   private List<StoreInfo> storeInfoList;
-/*    */   
-/*    */   public int getPageIndex() {
-/* 36 */     return this.pageIndex;
-/*    */   }
-/*    */   
-/*    */   public void setPageIndex(int pageIndex) {
-/* 40 */     this.pageIndex = pageIndex;
-/*    */   }
-/*    */   
-/*    */   public int getPageSize() {
-/* 44 */     return this.pageSize;
-/*    */   }
-/*    */   
-/*    */   public void setPageSize(int pageSize) {
-/* 48 */     this.pageSize = pageSize;
-/*    */   }
-/*    */   
-/*    */   public int getTotalSize() {
-/* 52 */     return this.totalSize;
-/*    */   }
-/*    */   
-/*    */   public void setTotalSize(int totalSize) {
-/* 56 */     this.totalSize = totalSize;
-/*    */   }
-/*    */   
-/*    */   public List<StoreInfo> getStoreInfoList() {
-/* 60 */     return this.storeInfoList;
-/*    */   }
-/*    */   
-/*    */   public void setStoreInfoList(List<StoreInfo> storeInfoList) {
-/* 64 */     this.storeInfoList = storeInfoList;
-/*    */   }
-/*    */ }
-
-
-/* Location:              E:\chendu\MicroService\application\SpringBatchService\SpringBatchServiceServer\src\main\resources\lib\oil-sdk-jar-1.0.16.jar!\com\xiaoju\open\oil\interfaces\response\QueryStoreListResponse.class
- * Java compiler version: 8 (52.0)
- * JD-Core Version:       1.1.3
- */
+///*    */ package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.response;
+///*    */
+///*    */ import com.xiaoju.open.oil.commons.OpenResponse;
+///*    */ import com.xiaoju.open.oil.interfaces.domain.StoreInfo;
+///*    */ import java.util.List;
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */ public class QueryStoreListResponse
+///*    */   extends OpenResponse
+///*    */ {
+///*    */   private int pageIndex;
+///*    */   private int pageSize;
+///*    */   private int totalSize;
+///*    */   private List<StoreInfo> storeInfoList;
+///*    */
+///*    */   public int getPageIndex() {
+///* 36 */     return this.pageIndex;
+///*    */   }
+///*    */
+///*    */   public void setPageIndex(int pageIndex) {
+///* 40 */     this.pageIndex = pageIndex;
+///*    */   }
+///*    */
+///*    */   public int getPageSize() {
+///* 44 */     return this.pageSize;
+///*    */   }
+///*    */
+///*    */   public void setPageSize(int pageSize) {
+///* 48 */     this.pageSize = pageSize;
+///*    */   }
+///*    */
+///*    */   public int getTotalSize() {
+///* 52 */     return this.totalSize;
+///*    */   }
+///*    */
+///*    */   public void setTotalSize(int totalSize) {
+///* 56 */     this.totalSize = totalSize;
+///*    */   }
+///*    */
+///*    */   public List<StoreInfo> getStoreInfoList() {
+///* 60 */     return this.storeInfoList;
+///*    */   }
+///*    */
+///*    */   public void setStoreInfoList(List<StoreInfo> storeInfoList) {
+///* 64 */     this.storeInfoList = storeInfoList;
+///*    */   }
+///*    */ }
+//
+//
+///* Location:              E:\chendu\MicroService\application\SpringBatchService\SpringBatchServiceServer\src\main\resources\lib\oil-sdk-jar-1.0.16.jar!\com\xiaoju\open\oil\interfaces\response\QueryStoreListResponse.class
+// * Java compiler version: 8 (52.0)
+// * JD-Core Version:       1.1.3
+// */

+ 34 - 34
SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/response/QueryStorePriceResponse.java

@@ -1,34 +1,34 @@
-/*    */ package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.response;
-/*    */ 
-/*    */ import com.xiaoju.open.oil.commons.OpenResponse;
-/*    */ import com.xiaoju.open.oil.interfaces.domain.ItemInfo;
-/*    */ import java.util.List;
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ public class QueryStorePriceResponse
-/*    */   extends OpenResponse
-/*    */ {
-/*    */   private List<ItemInfo> itemInfoList;
-/*    */   
-/*    */   public List<ItemInfo> getItemInfoList() {
-/* 22 */     return this.itemInfoList;
-/*    */   }
-/*    */   
-/*    */   public void setItemInfoList(List<ItemInfo> itemInfoList) {
-/* 26 */     this.itemInfoList = itemInfoList;
-/*    */   }
-/*    */ }
-
-
-/* Location:              E:\chendu\MicroService\application\SpringBatchService\SpringBatchServiceServer\src\main\resources\lib\oil-sdk-jar-1.0.16.jar!\com\xiaoju\open\oil\interfaces\response\QueryStorePriceResponse.class
- * Java compiler version: 8 (52.0)
- * JD-Core Version:       1.1.3
- */
+///*    */ package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.response;
+///*    */
+///*    */ import com.xiaoju.open.oil.commons.OpenResponse;
+///*    */ import com.xiaoju.open.oil.interfaces.domain.ItemInfo;
+///*    */ import java.util.List;
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */ public class QueryStorePriceResponse
+///*    */   extends OpenResponse
+///*    */ {
+///*    */   private List<ItemInfo> itemInfoList;
+///*    */
+///*    */   public List<ItemInfo> getItemInfoList() {
+///* 22 */     return this.itemInfoList;
+///*    */   }
+///*    */
+///*    */   public void setItemInfoList(List<ItemInfo> itemInfoList) {
+///* 26 */     this.itemInfoList = itemInfoList;
+///*    */   }
+///*    */ }
+//
+//
+///* Location:              E:\chendu\MicroService\application\SpringBatchService\SpringBatchServiceServer\src\main\resources\lib\oil-sdk-jar-1.0.16.jar!\com\xiaoju\open\oil\interfaces\response\QueryStorePriceResponse.class
+// * Java compiler version: 8 (52.0)
+// * JD-Core Version:       1.1.3
+// */

+ 85 - 85
SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/response/QueryUserPromotionListResponse.java

@@ -1,85 +1,85 @@
-/*    */ package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.response;
-/*    */ 
-/*    */ import com.xiaoju.open.oil.commons.OpenResponse;
-/*    */ import com.xiaoju.open.oil.interfaces.domain.AllowancePromotionInfo;
-/*    */ import java.util.List;
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ public class QueryUserPromotionListResponse
-/*    */   extends OpenResponse
-/*    */ {
-/*    */   private Integer pageIndex;
-/*    */   private Integer pageSize;
-/*    */   private Integer totalSize;
-/*    */   private Integer totalPage;
-/*    */   private List<AllowancePromotionInfo> data;
-/*    */   
-/*    */   public Integer getPageIndex() {
-/* 41 */     return this.pageIndex;
-/*    */   }
-/*    */   
-/*    */   public void setPageIndex(Integer pageIndex) {
-/* 45 */     this.pageIndex = pageIndex;
-/*    */   }
-/*    */   
-/*    */   public Integer getPageSize() {
-/* 49 */     return this.pageSize;
-/*    */   }
-/*    */   
-/*    */   public void setPageSize(Integer pageSize) {
-/* 53 */     this.pageSize = pageSize;
-/*    */   }
-/*    */   
-/*    */   public Integer getTotalSize() {
-/* 57 */     return this.totalSize;
-/*    */   }
-/*    */   
-/*    */   public void setTotalSize(Integer totalSize) {
-/* 61 */     this.totalSize = totalSize;
-/*    */   }
-/*    */   
-/*    */   public Integer getTotalPage() {
-/* 65 */     return this.totalPage;
-/*    */   }
-/*    */   
-/*    */   public void setTotalPage(Integer totalPage) {
-/* 69 */     this.totalPage = totalPage;
-/*    */   }
-/*    */   
-/*    */   public List<AllowancePromotionInfo> getData() {
-/* 73 */     return this.data;
-/*    */   }
-/*    */   
-/*    */   public void setData(List<AllowancePromotionInfo> data) {
-/* 77 */     this.data = data;
-/*    */   }
-/*    */ }
-
-
-/* Location:              E:\chendu\MicroService\application\SpringBatchService\SpringBatchServiceServer\src\main\resources\lib\oil-sdk-jar-1.0.16.jar!\com\xiaoju\open\oil\interfaces\response\QueryUserPromotionListResponse.class
- * Java compiler version: 8 (52.0)
- * JD-Core Version:       1.1.3
- */
+///*    */ package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.response;
+///*    */
+///*    */ import com.xiaoju.open.oil.commons.OpenResponse;
+///*    */ import com.xiaoju.open.oil.interfaces.domain.AllowancePromotionInfo;
+///*    */ import java.util.List;
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */ public class QueryUserPromotionListResponse
+///*    */   extends OpenResponse
+///*    */ {
+///*    */   private Integer pageIndex;
+///*    */   private Integer pageSize;
+///*    */   private Integer totalSize;
+///*    */   private Integer totalPage;
+///*    */   private List<AllowancePromotionInfo> data;
+///*    */
+///*    */   public Integer getPageIndex() {
+///* 41 */     return this.pageIndex;
+///*    */   }
+///*    */
+///*    */   public void setPageIndex(Integer pageIndex) {
+///* 45 */     this.pageIndex = pageIndex;
+///*    */   }
+///*    */
+///*    */   public Integer getPageSize() {
+///* 49 */     return this.pageSize;
+///*    */   }
+///*    */
+///*    */   public void setPageSize(Integer pageSize) {
+///* 53 */     this.pageSize = pageSize;
+///*    */   }
+///*    */
+///*    */   public Integer getTotalSize() {
+///* 57 */     return this.totalSize;
+///*    */   }
+///*    */
+///*    */   public void setTotalSize(Integer totalSize) {
+///* 61 */     this.totalSize = totalSize;
+///*    */   }
+///*    */
+///*    */   public Integer getTotalPage() {
+///* 65 */     return this.totalPage;
+///*    */   }
+///*    */
+///*    */   public void setTotalPage(Integer totalPage) {
+///* 69 */     this.totalPage = totalPage;
+///*    */   }
+///*    */
+///*    */   public List<AllowancePromotionInfo> getData() {
+///* 73 */     return this.data;
+///*    */   }
+///*    */
+///*    */   public void setData(List<AllowancePromotionInfo> data) {
+///* 77 */     this.data = data;
+///*    */   }
+///*    */ }
+//
+//
+///* Location:              E:\chendu\MicroService\application\SpringBatchService\SpringBatchServiceServer\src\main\resources\lib\oil-sdk-jar-1.0.16.jar!\com\xiaoju\open\oil\interfaces\response\QueryUserPromotionListResponse.class
+// * Java compiler version: 8 (52.0)
+// * JD-Core Version:       1.1.3
+// */

+ 43 - 43
SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/response/RefundResponse.java

@@ -1,43 +1,43 @@
-/*    */ package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.response;
-/*    */ 
-/*    */ import com.xiaoju.open.oil.commons.OpenResponse;
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ public class RefundResponse
-/*    */   extends OpenResponse
-/*    */ {
-/*    */   private Boolean success;
-/*    */   private String msg;
-/*    */   
-/*    */   public Boolean getSuccess() {
-/* 23 */     return this.success;
-/*    */   }
-/*    */   
-/*    */   public void setSuccess(Boolean success) {
-/* 27 */     this.success = success;
-/*    */   }
-/*    */   
-/*    */   public String getMsg() {
-/* 31 */     return this.msg;
-/*    */   }
-/*    */   
-/*    */   public void setMsg(String msg) {
-/* 35 */     this.msg = msg;
-/*    */   }
-/*    */ }
-
-
-/* Location:              E:\chendu\MicroService\application\SpringBatchService\SpringBatchServiceServer\src\main\resources\lib\oil-sdk-jar-1.0.16.jar!\com\xiaoju\open\oil\interfaces\response\RefundResponse.class
- * Java compiler version: 8 (52.0)
- * JD-Core Version:       1.1.3
- */
+///*    */ package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.response;
+///*    */
+///*    */ import com.xiaoju.open.oil.commons.OpenResponse;
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */ public class RefundResponse
+///*    */   extends OpenResponse
+///*    */ {
+///*    */   private Boolean success;
+///*    */   private String msg;
+///*    */
+///*    */   public Boolean getSuccess() {
+///* 23 */     return this.success;
+///*    */   }
+///*    */
+///*    */   public void setSuccess(Boolean success) {
+///* 27 */     this.success = success;
+///*    */   }
+///*    */
+///*    */   public String getMsg() {
+///* 31 */     return this.msg;
+///*    */   }
+///*    */
+///*    */   public void setMsg(String msg) {
+///* 35 */     this.msg = msg;
+///*    */   }
+///*    */ }
+//
+//
+///* Location:              E:\chendu\MicroService\application\SpringBatchService\SpringBatchServiceServer\src\main\resources\lib\oil-sdk-jar-1.0.16.jar!\com\xiaoju\open\oil\interfaces\response\RefundResponse.class
+// * Java compiler version: 8 (52.0)
+// * JD-Core Version:       1.1.3
+// */

+ 34 - 34
SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/api/xiaoju/sdk/response/UserAuthResponse.java

@@ -1,34 +1,34 @@
-/*    */ package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.response;
-/*    */ 
-/*    */ import com.xiaoju.open.oil.commons.OpenResponse;
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ 
-/*    */ public class UserAuthResponse
-/*    */   extends OpenResponse
-/*    */ {
-/*    */   private static final long serialVersionUID = -90530346054364773L;
-/*    */   private String link;
-/*    */   
-/*    */   public String getLink() {
-/* 17 */     return this.link;
-/*    */   }
-/*    */   
-/*    */   public void setLink(String link) {
-/* 21 */     this.link = link;
-/*    */   }
-/*    */ 
-/*    */   
-/*    */   public String toString() {
-/* 26 */     return "UserAuthResponse{link='" + this.link + '\'' + '}';
-/*    */   }
-/*    */ }
-
-
-/* Location:              E:\chendu\MicroService\application\SpringBatchService\SpringBatchServiceServer\src\main\resources\lib\oil-sdk-jar-1.0.16.jar!\com\xiaoju\open\oil\interfaces\response\UserAuthResponse.class
- * Java compiler version: 8 (52.0)
- * JD-Core Version:       1.1.3
- */
+///*    */ package com.zswl.cloud.springBtach.server.core.api.xiaoju.sdk.response;
+///*    */
+///*    */ import com.xiaoju.open.oil.commons.OpenResponse;
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */
+///*    */ public class UserAuthResponse
+///*    */   extends OpenResponse
+///*    */ {
+///*    */   private static final long serialVersionUID = -90530346054364773L;
+///*    */   private String link;
+///*    */
+///*    */   public String getLink() {
+///* 17 */     return this.link;
+///*    */   }
+///*    */
+///*    */   public void setLink(String link) {
+///* 21 */     this.link = link;
+///*    */   }
+///*    */
+///*    */
+///*    */   public String toString() {
+///* 26 */     return "UserAuthResponse{link='" + this.link + '\'' + '}';
+///*    */   }
+///*    */ }
+//
+//
+///* Location:              E:\chendu\MicroService\application\SpringBatchService\SpringBatchServiceServer\src\main\resources\lib\oil-sdk-jar-1.0.16.jar!\com\xiaoju\open\oil\interfaces\response\UserAuthResponse.class
+// * Java compiler version: 8 (52.0)
+// * JD-Core Version:       1.1.3
+// */