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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
| package org.dromara.demo.domain;
|
| import com.baomidou.mybatisplus.annotation.TableId;
| import com.baomidou.mybatisplus.annotation.TableName;
| import lombok.Data;
|
| import java.io.Serial;
| import java.util.Date;
|
| /**
| * 交通事故对象 rs_traffic_accident
| *
| * @author gonghl
| * @date 2024-03-11
| */
| @Data
| @TableName("rs_traffic_accident")
| public class RsTrafficAccident {
|
| @Serial
| private static final long serialVersionUID = 1L;
|
| /**
| * 编号
| */
| @TableId(value = "id")
| private String id;
|
| /**
| * 标题
| */
| private String title;
|
| /**
| * 排序
| */
| private Long sequence;
|
| /**
| * 启用状态 1启用 2未启用
| */
| private Long status;
|
| private Date createTime;
| }
|
|