|
|
@@ -19,35 +19,43 @@ import java.util.Date;
|
|
|
@ExcelContext(fileName = "物流结算订单列表", sheetName = "物流结算订单列表")
|
|
|
public class SettlementLogisticsVo {
|
|
|
|
|
|
+ @ExcelProperty(value = "状态")
|
|
|
+ private String statusLabel;
|
|
|
/**
|
|
|
- * 主键
|
|
|
+ * 结算单编号
|
|
|
*/
|
|
|
- @ExcelProperty(value = "主键")
|
|
|
- private Long id;
|
|
|
+ @ExcelProperty(value = "结算单编号")
|
|
|
+ private String slOrderNo;
|
|
|
|
|
|
- @ExcelProperty(value = "状态")
|
|
|
- private String statusLabel;
|
|
|
/**
|
|
|
- * 对账单编号
|
|
|
+ * 生成时间
|
|
|
*/
|
|
|
- @ExcelProperty(value = "对账单编号")
|
|
|
- private String lLedgerNo;
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @ExcelProperty(value = "生成时间")
|
|
|
+ private Date createTime;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 客户单位
|
|
|
+ */
|
|
|
+ @ExcelProperty(value = "客户单位")
|
|
|
+ private String firmName;
|
|
|
+
|
|
|
/**
|
|
|
* 对账表名称
|
|
|
*/
|
|
|
@ExcelProperty(value = "对账表名称")
|
|
|
private String name;
|
|
|
/**
|
|
|
- * 结算单编号
|
|
|
+ * 对账单编号
|
|
|
*/
|
|
|
- @ExcelProperty(value = "结算单编号")
|
|
|
- private String slOrderNo;
|
|
|
-
|
|
|
+ @ExcelProperty(value = "对账单编号")
|
|
|
+ private String lLedgerNo;
|
|
|
/**
|
|
|
- * 剩余待还款
|
|
|
+ * 支付方式
|
|
|
*/
|
|
|
- @ExcelProperty(value = "剩余待还款")
|
|
|
- private BigDecimal waitPrice;
|
|
|
+ @ExcelProperty(value = "支付方式")
|
|
|
+ private String tradingLabel;
|
|
|
+
|
|
|
|
|
|
/**
|
|
|
* 实际应收/元
|
|
|
@@ -60,6 +68,11 @@ public class SettlementLogisticsVo {
|
|
|
*/
|
|
|
@ExcelProperty(value = "当前收款/元")
|
|
|
private BigDecimal actualPrice;
|
|
|
+ /**
|
|
|
+ * 剩余待还款
|
|
|
+ */
|
|
|
+ @ExcelProperty(value = "剩余待还款")
|
|
|
+ private BigDecimal waitPrice;
|
|
|
|
|
|
/**
|
|
|
* 预计收款日期
|
|
|
@@ -74,11 +87,6 @@ public class SettlementLogisticsVo {
|
|
|
|
|
|
@ExcelProperty(value = "联系电话")
|
|
|
private String phone;
|
|
|
- /**
|
|
|
- * 备注
|
|
|
- */
|
|
|
- @ExcelProperty(value = "备注")
|
|
|
- private String remark;
|
|
|
|
|
|
/**
|
|
|
* 变更人
|
|
|
@@ -86,26 +94,9 @@ public class SettlementLogisticsVo {
|
|
|
@ExcelProperty(value = "变更人")
|
|
|
private String updateByLabel;
|
|
|
|
|
|
- /**
|
|
|
- * 生成时间
|
|
|
- */
|
|
|
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
- @ExcelProperty(value = "生成时间")
|
|
|
- private Date createTime;
|
|
|
|
|
|
|
|
|
- /**
|
|
|
- * 交易方式
|
|
|
- */
|
|
|
- @ExcelProperty(value = "交易方式")
|
|
|
- private String tradingLabel;
|
|
|
|
|
|
|
|
|
- /**
|
|
|
- * 客户单位
|
|
|
- */
|
|
|
- @ExcelProperty(value = "客户单位")
|
|
|
- private String firmName;
|
|
|
-
|
|
|
|
|
|
}
|