bug
jiangping
2023-11-07 64b432916af9c9218ab3f3eca614e26c542142ae
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 doumeemes.dao.ext.beanDto;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * Created by IntelliJ IDEA.
 *
 * @Author : Rk
 * @create 2023/7/19 13:55
 */
@Data
public class SubmitTransferOutDetailDTO {
 
    @ApiModelProperty(value = "转库单明细行主键")
    private Integer wTransferDetailId;
 
    @ApiModelProperty(value = "库存行主键")
    private Integer wStockId;
 
    @ApiModelProperty(value = "出库数量")
    private BigDecimal outNum;
 
}