1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.jsh.erp.datasource.entities;
|
| import lombok.Data;
| import java.util.Date;
|
| @Data
| public class CloudContent {
| private Long id;
| private String type;
| private String title;
| private String content;
| private String version;
| private Integer status;
| private Date createTime;
| private Long creator;
| private Date updateTime;
| private Long updater;
| }
|
|