From 7b65fb8c1001850e468a51c2d9af474621ce7115 Mon Sep 17 00:00:00 2001
From: 44323 <443237572@qq.com>
Date: 星期二, 19 三月 2024 18:11:45 +0800
Subject: [PATCH] Merge branch '2.0' of http://120.76.84.145:10101/gitblit/r/java/PlayPai into 2.0
---
cloud-server-competition/src/main/java/com/dsh/competition/model/AddParticipant.java | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/cloud-server-competition/src/main/java/com/dsh/competition/model/AddParticipant.java b/cloud-server-competition/src/main/java/com/dsh/competition/model/AddParticipant.java
index ed87a1a..d85610b 100644
--- a/cloud-server-competition/src/main/java/com/dsh/competition/model/AddParticipant.java
+++ b/cloud-server-competition/src/main/java/com/dsh/competition/model/AddParticipant.java
@@ -16,13 +16,14 @@
public class AddParticipant {
@ApiModelProperty(value = "姓名", dataType = "string", required = true)
private String name;
+ @ApiModelProperty(value = "头像", dataType = "string", required = true)
+ private String headImg;
@ApiModelProperty(value = "生日", dataType = "string", required = true)
- @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
- private Date birthday;
+ private String birthday;
@ApiModelProperty(value = "性别(1=男,2=女)", dataType = "int", required = true)
private Integer gender;
@ApiModelProperty(value = "身高(CM)", dataType = "int", required = true)
- private Integer height;
+ private String height;
@ApiModelProperty(value = "体重(KG)", dataType = "double", required = true)
private Double weight;
@ApiModelProperty(value = "联系电话", dataType = "string", required = false)
--
Gitblit v1.7.1