parent
6cd46e07bc
commit
e85acdcfff
@ -0,0 +1,30 @@
|
||||
package cn.estsh.i3plus.pojo.wms.dto;
|
||||
|
||||
import cn.estsh.i3plus.pojo.wms.bean.WmsDocMovementDetails;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Description :单据
|
||||
* @Reference :
|
||||
* @Author :puxiao.liao
|
||||
* @CreateDate : 2020-07-21 2:37 下午
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Api("单据")
|
||||
public class WmsDocMovementMasterDto implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = -1388177116144308137L;
|
||||
|
||||
@ApiParam("工厂编号")
|
||||
private String organizeCode;
|
||||
|
||||
@ApiParam("单据明细")
|
||||
private List<WmsDocMovementDetails> wmsDocMovementDetailsList;
|
||||
|
||||
}
|
Loading…
Reference in New Issue