自动化立体仓库 - WMS系统
chen.llin
2025-12-24 46b422214d5d422be5dfa0df57560cda678058c9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package com.zy.asrs.entity.result;
 
import com.zy.asrs.entity.MonthlySettle;
import com.zy.asrs.entity.MonthlySettleDetail;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.List;
 
/**
 * 月结统计信息
 */
@Data
public class MonthlySettleStatisticsVO {
    
    /**
     * 月结主记录
     */
    @ApiModelProperty(value = "月结主记录")
    private MonthlySettle settle;
    
    /**
     * 月结明细列表
     */
    @ApiModelProperty(value = "月结明细列表")
    private List<MonthlySettleDetail> details;
}