提交 | 用户 | 时间 | ||
7fd198 | 1 | package com.iailab.module.model.mcs.pre.vo; |
潘 | 2 | |
3 | import lombok.Data; | |
4 | ||
5 | import java.io.Serializable; | |
6 | ||
7 | /** | |
8 | * @author PanZhibao | |
9 | * @date 2021年05月10日 13:31 | |
10 | */ | |
11 | @Data | |
12 | public class CountItemtypeVO implements Serializable { | |
13 | private static final long serialVersionUID = 1L; | |
14 | ||
15 | /** | |
16 | * 预测项类型名 | |
17 | */ | |
18 | private String name; | |
19 | ||
20 | /** | |
21 | * 数量 | |
22 | */ | |
23 | private Integer count; | |
24 | ||
25 | } |