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