shiyunteng
3 天以前 fb9fca375c78c5b79acf6db990357816f86100fb
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
package com.by4cloud.platformx.business.dto;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
public class OutSubjectMatterAddDTO {
 
    @Schema(description = "标的物名称")
    private String subjectMatterName;
 
    @Schema(description = "标的物编码")
    private String subjectMatterCode;
 
    @Schema(description = "出库数量")
    private BigDecimal outBoundNum;
 
    @Schema(description = "单据名称")
    private String outBoundAttNames;
 
    @Schema(description = "单据路径")
    private String outBoundAttPaths;
 
}