ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/dto/ExchangeDto.java
New file @@ -0,0 +1,18 @@ package com.ruoyi.other.api.dto; import io.swagger.annotations.ApiModelProperty; import lombok.Data; @Data public class ExchangeDto { @ApiModelProperty("商品id") Integer goodId; @ApiModelProperty("地址id") Integer addressId; @ApiModelProperty("备注") String remark; @ApiModelProperty(hidden = true) Long userId; }