Merge branch 'cc_20250515_handle' into 'master'

Cc 20250515 handle

See merge request hangzhou/java/custom_zxjp!87
This commit is contained in:
苏竹红
2025-05-19 10:30:37 +00:00
8 changed files with 262 additions and 7 deletions

View File

@@ -17,4 +17,12 @@ public class UserDTO {
private String name;
@ApiModelProperty(value = "手机号")
private String mobile;
public UserDTO() {
}
public UserDTO(String name, String mobile) {
this.name = name;
this.mobile = mobile;
}
}