版本跟新

pull/164/head
Tpj 2025-01-03 15:44:56 +08:00
parent 7c343a217c
commit 9edb70cc16
3 changed files with 6 additions and 6 deletions

View File

@ -14,7 +14,7 @@
<name>${project.artifactId}</name>
<description>
product 模块 API暴露给其它模块调用
海上会员 模块 API暴露给其它模块调用
</description>
<dependencies>
@ -25,8 +25,8 @@
<!-- Web 相关 -->
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-ui</artifactId>
<groupId>org.springdoc</groupId> <!-- 接口文档:使用最新版本的 Swagger 模型 -->
<artifactId>springdoc-openapi-starter-webmvc-api</artifactId>
<scope>provided</scope>
</dependency>

View File

@ -3,8 +3,7 @@ package cn.iocoder.yudao.module.hshy.api.pointruleitem.dto;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import javax.validation.constraints.NotNull;
import java.time.LocalDateTime;
@Schema(description = "管理后台 - 规则明细 Response TDO")
@Data

View File

@ -1,8 +1,9 @@
package cn.iocoder.yudao.module.hshy.api.userblack.dto;
import io.swagger.v3.oas.annotations.media.Schema;
import jakarta.validation.constraints.NotNull;
import javax.validation.constraints.NotNull;
public class UserBlackReqDTO {
@Schema(description = "会员编号", example = "1034")
@NotNull(message = "会员编号")