master:销售/出库,详情返回增加memo;

pull/1121/head
liujiang 2025-10-25 13:52:45 +08:00
parent 82570399fa
commit 129e30e1a5
3 changed files with 4 additions and 1 deletions

View File

@ -47,6 +47,8 @@ public class StoreSaleResVO {
private Integer refundQuantity;
@ApiModelProperty(value = "销售金额")
private BigDecimal amount;
@ApiModelProperty(value = "备注")
private String remark;
@ApiModelProperty(value = "销售详情列表")
private List<SaleDetailVO> detailList;

View File

@ -4,7 +4,6 @@ import com.baomidou.mybatisplus.annotation.TableId;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.XktBaseEntity;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;

View File

@ -47,6 +47,8 @@ public class StoreSaleResDTO {
private Integer refundQuantity;
@ApiModelProperty(value = "销售金额")
private BigDecimal amount;
@ApiModelProperty(value = "备注")
private String remark;
@ApiModelProperty(value = "销售详情列表")
private List<SSDetailDTO> detailList;