提交 | 用户 | 时间 | ||
2c65c3 | 1 | package com.jcdm.main.da.passingStationCollection.domain; |
W | 2 | |
3 | import com.jcdm.common.annotation.Excel; | |
4 | import lombok.Data; | |
5 | ||
6 | @Data | |
7 | public class ProductNumVO { | |
8 | ||
9 | @Excel(name = "日期") | |
10 | private String queryDate; | |
11 | ||
12 | @Excel(name = "机型") | |
13 | private String model; | |
14 | ||
15 | @Excel(name = "产量") | |
16 | private Integer num; | |
17 | ||
18 | ||
19 | } |