| | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.io.Serializable; |
| | | import java.time.LocalDate; |
| | |
| | | |
| | | @ApiModelProperty("下单时间") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private LocalDateTime createTime; |
| | | |
| | | @ApiModelProperty("下发时间") |
| | |
| | | private Integer typeSource; |
| | | |
| | | @ApiModelProperty("原材料id") |
| | | private Integer ifsInventoryId; |
| | | private Long ifsInventoryId; |
| | | |
| | | @ApiModelProperty("抽查数量") |
| | | private String testQuantity; |