7 天以前 ffe7921a138331185186fd100846fe50dcaf841c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package cn.iocoder.yudao.module.mes.controller.admin.wm.returnsales.vo.detail;
 
import cn.iocoder.yudao.framework.common.pojo.PageParam;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
/**
 * 管理后台 - MES 销售退货相关
 *
 * @author 芋道源码
 */
@Schema(description = "管理后台 - MES 销售退货明细分页 Request VO")
@Data
@EqualsAndHashCode(callSuper = true)
public class MesWmReturnSalesDetailPageReqVO extends PageParam {
 
    @Schema(description = "退货单ID", example = "1")
    private Long returnId;
 
    @Schema(description = "行ID", example = "1")
    private Long lineId;
 
    @Schema(description = "物料ID", example = "1")
    private Long itemId;
 
}