1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.smartearth.poiexcel.entity;
|
| import java.io.Serializable;
|
| /**
| * 企业实体类
| * @author WWW
| * @date 2023-10-05
| */
| public class EntEntity implements Serializable {
| private static final long serialVersionUID = -8624235184539814990L;
|
| public EntEntity() {
| }
| }
|
|