LedgerLogisticsStatistics.java 380 B

1234567891011121314151617
  1. package com.sckw.freight.model.po;
  2. import lombok.Data;
  3. /**
  4. * @BelongsProject: Freight-Settlement-Backend
  5. * @BelongsPackage: com.sckw.freight.model.vo.response
  6. * @Author: xj
  7. * @CreateTime: 2025-01-13 15:27
  8. * @Description: 物流对账单-统计信息
  9. * @Version: 1.0
  10. */
  11. @Data
  12. public class LedgerLogisticsStatistics {
  13. private Integer status;
  14. private Long count;
  15. }