| | |
| | | package com.ruoyi.account.dto; |
| | | |
| | | import com.ruoyi.account.pojo.SalesRefundAmountOrder; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import io.swagger.v3.oas.annotations.tags.Tag; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | | @Data |
| | | public class SalesRefundAmountOrderDto extends SalesRefundAmountOrder { |
| | | |
| | | @ApiModelProperty("退货单号") |
| | | @Schema(description = "退货单号") |
| | | private String returnManagementNo; |
| | | |
| | | @ApiModelProperty("客户名称") |
| | | @Schema(description = "客户名称") |
| | | private String customerName; |
| | | |
| | | @ApiModelProperty("销售单号") |
| | | @Schema(description = "销售单号") |
| | | private String salesContractNo; |
| | | |
| | | @ApiModelProperty("创建人名称") |
| | | @Schema(description = "创建人名称") |
| | | private String createUserName; |
| | | |
| | | |