29 lines
489 B
Plaintext
29 lines
489 B
Plaintext
package com.cmeim.biz.dto;
|
|
|
|
import io.swagger.annotations.ApiParam;
|
|
import lombok.Data;
|
|
|
|
import java.math.BigDecimal;
|
|
|
|
/**
|
|
* 作者: 徐一码
|
|
* 时间: 2021/12/29
|
|
*
|
|
* @author XXL
|
|
*/
|
|
@Data
|
|
public class BunkerOutDto {
|
|
|
|
@ApiParam("领料单号")
|
|
private String pickBillNumber;
|
|
|
|
@ApiParam("出库类型(生产领料、零星领料)")
|
|
private Integer outType;
|
|
|
|
@ApiParam("条码")
|
|
private String materialBar;
|
|
|
|
@ApiParam("数量")
|
|
private BigDecimal qty;
|
|
}
|