zss
2025-08-06 7100e5d8c5e924c5bb4f3088fc5f8d6b02da4179
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package com.ruoyi.account.dto;
 
import com.baomidou.mybatisplus.annotation.*;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.account.pojo.AccountExpense;
import com.ruoyi.account.pojo.AccountIncome;
import com.ruoyi.dto.DateQueryDto;
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
 
import javax.validation.constraints.NotBlank;
import java.io.Serializable;
import java.math.BigDecimal;
import java.time.LocalDateTime;
import java.util.Date;
import java.util.List;
import java.util.Map;
 
/**
 * 财务管理--财务报表
 */
 
@Data
public class AccountDto implements Serializable {
 
 
    /**
     * 总收入
     */
    private BigDecimal totalIncome;
 
    /**
     * 各类型收入金额(销售收入,服务收入,其他收入)
     */
    private List<AccountDto2> incomeType;
 
 
    /**
     * 收入笔数
     */
    private Long incomeNumber;
 
    /**
     * 总支出
     */
    private BigDecimal totalExpense;
 
 
    /**
     * 各类型支出金额(办公用品,员工工资,差旅费,设备费用,其他)
     */
    private List<AccountDto2> expenseType;
 
    /**
     * 支出笔数
     */
    private Long expenseNumber;
 
    /**
     * 净收入
     */
    private BigDecimal netRevenue;
 
 
 
 
}