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
| package com.yckj.bean;
|
| import java.io.Serializable;
| import java.util.Date;
| import lombok.Data;
|
| /**
| * tb_user_log
| * @author
| */
| @Data
| public class TbUserLog implements Serializable {
| private Long num;
|
| private Integer uid;
|
| private Integer uopratetype;
|
| private Date uoprateday;
|
| private String uterminalip;
|
| private String uopratemsg;
|
| private static final long serialVersionUID = 1L;
| }
|
|