字段名称修改

This commit is contained in:
2025-07-30 00:20:27 +08:00
parent 331ad4b587
commit 5074749b05
2 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@ public interface OrderConvert {
@Mapping(source = "rentCarOrderReq.batteryType", target = "batteryType"),
@Mapping(source = "userInfoDTO.userId", target = "customerId"),
@Mapping(source = "userInfoDTO.userName", target = "customerName"),
@Mapping(source = "userInfoDTO.mobileNumber", target = "customerPhone"),
@Mapping(source = "userInfoDTO.phoneNumber", target = "customerPhone"),
@Mapping(source = "rentCarRuleDTO.rentalType", target = "rentalType"),
@Mapping(source = "rentCarRuleDTO.rentalDays", target = "rentalDays"),
@Mapping(source = "rentCarRuleDTO.rentalPrice", target = "rentalPrice"),

View File

@ -15,7 +15,7 @@ public class SimpleUserInfoDTO {
private String userName;
@ApiModelProperty(value = "手机号")
private String mobileNumber;
private String phoneNumber;
@ApiModelProperty(value = "角色id")
private Integer roleId;