提交 | 用户 | 时间
|
e7c126
|
1 |
package com.iailab.module.system.api.logger.dto; |
H |
2 |
|
|
3 |
import com.iailab.framework.common.pojo.PageParam; |
|
4 |
import io.swagger.v3.oas.annotations.media.Schema; |
|
5 |
import lombok.Data; |
|
6 |
|
|
7 |
@Schema(name = "RPC 服务 - 操作日志分页 Request DTO") |
|
8 |
@Data |
|
9 |
public class OperateLogPageReqDTO extends PageParam { |
|
10 |
|
|
11 |
@Schema(description = "模块类型", requiredMode = Schema.RequiredMode.REQUIRED, example = "订单") |
|
12 |
private String type; |
|
13 |
|
|
14 |
@Schema(description = "模块数据编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "188") |
|
15 |
private Long bizId; |
|
16 |
|
|
17 |
@Schema(description = "用户编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "666") |
|
18 |
private Long userId; |
|
19 |
|
|
20 |
} |