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