| | |
| | | package com.zy.asrs.entity.param; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.zy.common.model.DetlDto; |
| | | import lombok.Data; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | |
| | | private String orderType; |
| | | |
| | | private List<Detl> orderDetails; |
| | | private String billType; |
| | | |
| | | @Data |
| | | public static class Detl { |
| | | private String orderTime; |
| | | |
| | | private String matnr; |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date createTime; |
| | | |
| | | private String batch; |
| | | |
| | | private Double anfme; |
| | | |
| | | } |
| | | private List<DetlDto> matList; |
| | | |
| | | } |