feat:意向阶段数据

This commit is contained in:
苏竹红
2025-05-15 16:47:00 +08:00
parent c3d2ec4832
commit 0acb2dbea1
3 changed files with 52 additions and 0 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;
}
}