38 lines
938 B
Plaintext
38 lines
938 B
Plaintext
package com.cmeim.biz.vo;
|
|
|
|
import com.cmeim.biz.po.MmOtheroutBill;
|
|
import io.swagger.annotations.ApiParam;
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class MmOtheroutBillVo extends MmOtheroutBill {
|
|
|
|
@ApiParam(value = "创建时间")
|
|
private String startCreatedDt;
|
|
private String endCreatedDt;
|
|
|
|
@ApiParam(value = "状态集合")
|
|
private Integer[] states;
|
|
|
|
@ApiParam(value = "物料编码")
|
|
private String materialCode;
|
|
|
|
@ApiParam(value = "物料名称")
|
|
private String materialName;
|
|
|
|
@ApiParam(value = "物料规格")
|
|
private String materialSpec;
|
|
@ApiParam(value = "类型(1-单独领料,2-合并领料)")
|
|
private Integer[] dictTypeArr;
|
|
|
|
/**
|
|
* 状态(1-待发料,2-部分发料,3-已发料)
|
|
*/
|
|
|
|
@ApiParam(value = "状态(1-待发料,2-部分发料,3-已发料)")
|
|
private Integer[] dictStatusArr;
|
|
|
|
@ApiParam(value = "导出所选单据")
|
|
private String[] orderArr;
|
|
}
|