1
2
3
4
5
6
7
8
9
10
11
12
| package com.lf.server.entity.data;
|
| import java.io.Serializable;
|
| /**
| * 操作日志表
| * @author sws
| * @date 2022-09-28
| */
| public class OperateEntity implements Serializable {
| private static final long serialVersionUID = -2335232554888606229L;
| }
|
|