doum
昨天 3537032d2b9313c8f108675f19cae079054d872b
server/services/src/main/java/com/doumee/dao/business/model/Orders.java
@@ -70,12 +70,27 @@
    @ApiModelProperty("手机号")
    @ExcelColumn(name="手机号",index=16 ,width=10)
    private String phone;
    @ApiModelProperty("金额(元)")
    @ExcelColumn(name="金额(元)",index=17 ,width=10)
    @ApiModelProperty("金额(分)")
    @ExcelColumn(name="金额(分)",index=17 ,width=10)
    private BigDecimal money;
    @ApiModelProperty("支付方式  0微信 1支付宝 2通联支付")
    @ExcelColumn(name="支付方式  0微信 1支付宝 2通联支付",index=18 ,width=10)
    private Integer payMethod;
    @ApiModelProperty("通联交易流水(支付宝、微信等平台订单号)")
    @ExcelColumn(name="通联交易流水(支付宝、微信等平台订单号)", width=10)
    private String payThirdOrderId;
    @ApiModelProperty("通联交易渠道数据(支付宝、微信、云闪付)")
    @ExcelColumn(name="通联交易渠道数据(支付宝、微信、云闪付)", width=10)
    private String payThirdOrderData;
    @ApiModelProperty("通联交易手续费")
    @ExcelColumn(name="通联交易手续费", width=10)
    private String payFee;
    @ApiModelProperty("通联交易结果说明")
    @ExcelColumn(name="通联交易结果说明)", width=10)
    private String payInfo;
    @ApiModelProperty("通联交易平台编号")
    @ExcelColumn(name="通联交易平台编号)", width=10)
    private String payCode;
    @ApiModelProperty("通联交易流水")
    @ExcelColumn(name="通联交易流水",index=19 ,width=10)
    private String payOrderId;
@@ -85,9 +100,9 @@
    @ApiModelProperty("取消时间")
    @ExcelColumn(name="取消时间",index=21 ,width=10)
    private Date cancelDate;
    @ApiModelProperty("取消方式  0自动取消;1收到取消")
    @ExcelColumn(name="取消方式  0自动取消;1收到取消",index=22 ,width=10)
    private String cancelWay;
    @ApiModelProperty("取消方式  0自动取消;1手动取消")
    @ExcelColumn(name="取消方式  0自动取消;1手动取消",index=22 ,width=10)
    private Integer cancelWay;
    @ApiModelProperty("取消备注")
    @ExcelColumn(name="取消备注",index=23 ,width=10)
    private String cancelInfo;
@@ -97,7 +112,25 @@
    @ApiModelProperty("取消状态 0处理中 1成功 2失败")
    @ExcelColumn(name="取消状态 0处理中 1成功 2失败",index=25 ,width=10)
    private Integer cancelStatus;
    @ApiModelProperty("支付状态:0=未支付;1=已支付")
    @ApiModelProperty("支付状态:0=未支付;1=已支付;")
    @ExcelColumn(name="支付状态:0=未支付;1=已支付",index=26 ,width=10)
    private Integer payStatus;
    @ApiModelProperty("开始时间")
    @TableField(exist = false)
    private Date starttime;
    @ApiModelProperty("截止时间")
    @TableField(exist = false)
    private Date endtime;
    @ApiModelProperty("负责人登陆")
    @TableField(exist = false)
    private String username;
    @ApiModelProperty("负责人姓名")
    @TableField(exist = false)
    private String userRealname;
    @ApiModelProperty("统计量")
    @TableField(exist = false)
    private Long num;
    @ApiModelProperty("已退款金额")
    @TableField(exist = false)
    private BigDecimal refundMoney;
}