1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package com.iplatform.test.domain.bo;
|
| //import io.swagger.annotations.ApiModel;
| //import io.swagger.annotations.ApiModelProperty;
| import com.fasterxml.jackson.annotation.JsonFormat;
| import lombok.Data;
| import java.util.Date;
|
|
| /**
| * 【请填写功能名称】编辑对象 eb_user
| *
| * @author shikeying
| * @date 2024-02-20
| */
| @Data
| //@ApiModel("【请填写功能名称】操作对象")
| public class EbUserBo {
|
| }
|
|