| | |
| | | import com.baomidou.mybatisplus.annotation.TableLogic; |
| | | import java.text.SimpleDateFormat; |
| | | import java.util.Date; |
| | | |
| | | import lombok.experimental.Accessors; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | import java.text.SimpleDateFormat; |
| | | import java.util.Date; |
| | |
| | | import java.util.Date; |
| | | |
| | | @Data |
| | | @Accessors(chain = true) |
| | | @TableName("man_wait_pakin_item") |
| | | public class WaitPakinItem implements Serializable { |
| | | |
| | |
| | | */ |
| | | @ApiModelProperty(value= "主单ID") |
| | | private Long pakinId; |
| | | |
| | | @ApiModelProperty("订单类型") |
| | | private String type; |
| | | |
| | | @ApiModelProperty("业务类型") |
| | | private Short wkType; |
| | | |
| | | /** |
| | | * 订单ID |
| | | */ |
| | | @ApiModelProperty(value= "订单ID") |
| | | private Long asnId; |
| | | |
| | | /** |
| | | * 订单编码 |
| | | */ |
| | | @ApiModelProperty(value= "订单编码") |
| | | private String asnCode; |
| | | |
| | | /** |
| | | * 订单明细ID |
| | | */ |
| | | @ApiModelProperty("订单明细ID") |
| | | private Long asnItemId; |
| | | |
| | | /** |
| | | * 跟踪码 |
| | | */ |
| | | @ApiModelProperty("物料跟踪码") |
| | | private String trackCode; |
| | | |
| | | /** |
| | | * 物料名称 |
| | |
| | | * 是否删除 1: 是 0: 否 |
| | | */ |
| | | @ApiModelProperty(value= "是否删除 1: 是 0: 否 ") |
| | | @TableLogic |
| | | private Integer deleted; |
| | | |
| | | /** |