doum
7 天以前 b574291c99bba5819fe2d69405ffa10e9d47d994
server/services/src/main/java/com/doumee/dao/business/model/Orders.java
@@ -88,6 +88,9 @@
    @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;
@@ -97,8 +100,8 @@
    @ApiModelProperty("取消时间")
    @ExcelColumn(name="取消时间",index=21 ,width=10)
    private Date cancelDate;
    @ApiModelProperty("取消方式  0自动取消;1收到取消")
    @ExcelColumn(name="取消方式  0自动取消;1收到取消",index=22 ,width=10)
    @ApiModelProperty("取消方式  0自动取消;1手动取消")
    @ExcelColumn(name="取消方式  0自动取消;1手动取消",index=22 ,width=10)
    private String cancelWay;
    @ApiModelProperty("取消备注")
    @ExcelColumn(name="取消备注",index=23 ,width=10)
@@ -112,4 +115,16 @@
    @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;
}