| 1234567891011121314151617 |
- package com.sckw.freight.model.po;
- import lombok.Data;
- /**
- * @BelongsProject: Freight-Settlement-Backend
- * @BelongsPackage: com.sckw.freight.model.vo.response
- * @Author: xj
- * @CreateTime: 2025-01-13 15:27
- * @Description: 物流对账单-统计信息
- * @Version: 1.0
- */
- @Data
- public class LedgerLogisticsStatistics {
- private Integer status;
- private Long count;
- }
|