|
|
@@ -0,0 +1,32 @@
|
|
|
+package com.poteviohealth.ym.ipos.model.payment;
|
|
|
+
|
|
|
+import com.poteviohealth.ym.ipos.model.payment.detail.StoreInfoChange;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 4.30.门店信息修改
|
|
|
+ * https://open.wangcaio2o.com/docs/ipos-sa/4.30.md
|
|
|
+ * @author Qin
|
|
|
+ */
|
|
|
+@Data
|
|
|
+public class ChangeBindPos{
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "报文签名",required = true)
|
|
|
+ private String sign;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "系统平台号:由翼码提供",required = true)
|
|
|
+ private String system_id = "5447";
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "商户号:翼码商户号,由翼码提供",required = true)
|
|
|
+ private String isspid = "00436433";
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "请求类型,固定值:store_edit_request",required = true)
|
|
|
+ private String request_type = "store_edit_request";
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "门店信息")
|
|
|
+ private StoreInfoChange store_info;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "门店编号",required = true)
|
|
|
+ private String store_id;
|
|
|
+}
|