| | |
| | | package com.zy.asrs.entity.param; |
| | | |
| | | import com.baomidou.mybatisplus.annotations.TableField; |
| | | import com.zy.common.model.DetlDto; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.util.List; |
| | |
| | | |
| | | private String orderType; |
| | | |
| | | private List<Detl> orderDetails; |
| | | private String orderTime; |
| | | |
| | | @Data |
| | | public static class Detl { |
| | | // private String itemId; |
| | | // |
| | | // private String itemName; |
| | | // |
| | | // private String allotItemId; |
| | | // |
| | | // private String allotItemName; |
| | | |
| | | private String matnr; |
| | | |
| | | private String batch; |
| | | |
| | | private Double anfme; |
| | | |
| | | } |
| | | private List<DetlDto> orderDetails; |
| | | |
| | | } |