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
| package com.oying.modules.pc.category.view;
|
| import lombok.Data;
|
| import java.io.Serializable;
| import java.time.LocalDateTime;
|
| @Data
| public class PlatformCategoryAdminView implements Serializable {
|
| private Long categoryId;
|
| private String name;
|
| private Integer sortWeight;
|
| private Long iconId;
|
| private String iconUrl;
|
| private Integer active;
|
| private String createBy;
|
| private LocalDateTime createTime;
|
| private String updateBy;
|
| private LocalDateTime updateTime;
|
| }
|
|