|
@@ -37,7 +37,7 @@ public class OrderEsDto {
|
|
|
*/
|
|
|
@ApiModelProperty("客户id")
|
|
|
@Field(type = FieldType.Integer)
|
|
|
- private Integer customerId;
|
|
|
+ private Long customerId;
|
|
|
|
|
|
/**
|
|
|
* 订单类型
|
|
@@ -101,7 +101,7 @@ public class OrderEsDto {
|
|
|
* 订单状态 1-待充值 2-充值中 3-重发
|
|
|
* 4-失败 6-成功
|
|
|
*/
|
|
|
- @ApiModelProperty("订单状态 1-待充值 2-充值中 3-重发 4-失败 6-成功")
|
|
|
+ @ApiModelProperty("订单状态 1-待充值 2-充值中 4-失败 6-成功 9-重发")
|
|
|
@Field(type = FieldType.Integer)
|
|
|
private Integer status;
|
|
|
/**
|
|
@@ -143,14 +143,14 @@ public class OrderEsDto {
|
|
|
*/
|
|
|
@ApiModelProperty("面额")
|
|
|
@Field(type = FieldType.Integer)
|
|
|
- private Integer flowAmount;
|
|
|
+ private Long flowAmount;
|
|
|
|
|
|
/**
|
|
|
* 成本
|
|
|
*/
|
|
|
@ApiModelProperty("成本")
|
|
|
@Field(type = FieldType.Integer)
|
|
|
- private Integer usageLimit;
|
|
|
+ private Long usageLimit;
|
|
|
/**
|
|
|
* 通道组发送次数
|
|
|
*/
|
|
@@ -177,35 +177,35 @@ public class OrderEsDto {
|
|
|
*/
|
|
|
@ApiModelProperty("客户结算价格")
|
|
|
@Field(type = FieldType.Integer)
|
|
|
- private Integer price;
|
|
|
+ private Long price;
|
|
|
|
|
|
/**
|
|
|
* 代理商结算价格
|
|
|
*/
|
|
|
@ApiModelProperty("代理商结算价格")
|
|
|
@Field(type = FieldType.Integer)
|
|
|
- private Integer partnerBalancePrice;
|
|
|
+ private Long partnerBalancePrice;
|
|
|
|
|
|
/**
|
|
|
* 成本价格
|
|
|
*/
|
|
|
@ApiModelProperty("成本价格")
|
|
|
@Field(type = FieldType.Integer)
|
|
|
- private Integer operatorBalancePrice;
|
|
|
+ private Long operatorBalancePrice;
|
|
|
|
|
|
/**
|
|
|
* 客户产品ID
|
|
|
*/
|
|
|
@ApiModelProperty("通道ID")
|
|
|
@Field(type = FieldType.Integer)
|
|
|
- private Integer customerProductId;
|
|
|
+ private Long customerProductId;
|
|
|
|
|
|
/**
|
|
|
* 通道ID
|
|
|
*/
|
|
|
@ApiModelProperty("通道ID")
|
|
|
@Field(type = FieldType.Integer)
|
|
|
- private Integer channelId;
|
|
|
+ private Long channelId;
|
|
|
|
|
|
/**
|
|
|
* 回调时间
|