启用BaseDTO, 提供给前端的接口,统一加上请求来源字段

This commit is contained in:
Guoqs
2024-06-17 09:31:47 +08:00
parent 29bd70740d
commit 2d9d679c69
9 changed files with 62 additions and 46 deletions

View File

@@ -0,0 +1,17 @@
package com.jsowell.pile.dto;
import lombok.*;
import lombok.experimental.SuperBuilder;
/**
* 基础DTO
*/
@Data
@SuperBuilder
public class BaseDTO {
/**
* 请求来源, 参见{@link com.jsowell.common.enums.adapay.AdapayPayChannelEnum}
*/
protected String requestSource;
}