BUGFIX:试用订单邮件 订单更新时间判断;

This commit is contained in:
shahaibo
2025-02-11 11:27:08 +08:00
parent aff870fba7
commit 297391d57e
6 changed files with 53 additions and 23 deletions

View File

@@ -28,6 +28,9 @@ public class EmailSendDTO {
@ApiModelProperty("职业")
private String occupation;
private String title;
private String surname;
private String givenName;
}

View File

@@ -0,0 +1,13 @@
package com.ai.da.model.dto;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@Data
public class UpdateUserInfoDTO {
private String country;
private String occupation;
private String title;
private String surname;
private String givenName;
}