| | |
| | | @ExcelColumn(name = "商品类型") |
| | | private Integer goodType; |
| | | |
| | | @ApiModelProperty(value = "物品级别(category主键,type=3)") |
| | | private Integer goodLevel; |
| | | |
| | | @ApiModelProperty(value = "补充信息") |
| | | @ExcelColumn(name = "补充信息") |
| | | private String supplement; |
| | |
| | | @ExcelColumn(name = "订单编号") |
| | | private String code; |
| | | |
| | | @ApiModelProperty(value = "预计送达时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date estimatedDeliveryTime; |
| | | |
| | | @ApiModelProperty(value = "司机薪酬(分)") |
| | | @ExcelColumn(name = "司机薪酬") |
| | | private Long driverFee; |
| | |
| | | @ExcelColumn(name = "异常费用") |
| | | private Long exceptionAmount; |
| | | |
| | | @ApiModelProperty(value = "异常补偿/补偿司机(分)") |
| | | @ApiModelProperty(value = "异常补偿司机(分)") |
| | | @ExcelColumn(name = "异常补偿") |
| | | private Long exceptionFee; |
| | | |
| | |
| | | |
| | | @ApiModelProperty(value = "结算状态:0=待结算;1=已结算;") |
| | | private Integer settlementStatus; |
| | | |
| | | @ApiModelProperty(value = "结算时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date settlementTime; |
| | | |
| | | @ApiModelProperty(value = "三方订单号") |
| | | private String outTradeNo; |
| | |
| | | @ApiModelProperty(value = "取件门店地址(关联查询)") |
| | | private String takeShopAddress; |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "取件门店联系电话(关联查询)") |
| | | private String takeShopLinkPhone; |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "物品等级贵重标识(关联查询:0=否;1=是)") |
| | | private String c2OtherField; |
| | | |
| | | } |