| | |
| | | package com.zt.life.modules.itemCirculatOrder.model; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.zt.common.entity.BusiEntity; |
| | |
| | | private String itemOther; |
| | | |
| | | @ApiModelProperty(value = "物品接收人") |
| | | private String itemAccept; |
| | | private String itemAcceptor; |
| | | |
| | | @ApiModelProperty(value = "物品接收人ID") |
| | | private String itemAcceptorId; |
| | | |
| | | @ApiModelProperty(value = "物品接收时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | |
| | | @ApiModelProperty(value = "物品接收情况说明") |
| | | private String acceptSituation; |
| | | |
| | | @ApiModelProperty(value = "病毒库版本") |
| | | private String virusLibraryVersion; |
| | | |
| | | @ApiModelProperty(value = "检测接收人") |
| | | private String detectAcceptor; |
| | | |
| | | @ApiModelProperty(value = "检测接收人ID") |
| | | private String detectAcceptorId; |
| | | |
| | | @ApiModelProperty(value = "检测接收时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private Date detectAcceptDate; |
| | | |
| | | @ApiModelProperty(value = "检测接收情况说明") |
| | | private String detectAcceptSituation; |
| | | |
| | | @ApiModelProperty(value = "入库人") |
| | | private String depositor; |
| | | |
| | | @ApiModelProperty(value = "入库人ID") |
| | | private String depositorId; |
| | | |
| | | @ApiModelProperty(value = "入库时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private Date depositDate; |
| | | |
| | | @ApiModelProperty(value = "入库情况说明") |
| | | private String depositSituation; |
| | | |
| | | @ApiModelProperty(value = "校准检测人") |
| | | private String calibratDetect; |
| | | private String calibratDetector; |
| | | |
| | | @ApiModelProperty(value = "校准检测人ID") |
| | | private String calibratDetectorId; |
| | | |
| | | @ApiModelProperty(value = "校准检测时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | |
| | | @ApiModelProperty(value = "校准检测情况说明") |
| | | private String detectSituation; |
| | | |
| | | @ApiModelProperty(value = "物品入库人") |
| | | private String warehouse; |
| | | |
| | | @ApiModelProperty(value = "物品入库时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private Date warehouseDate; |
| | | |
| | | @ApiModelProperty(value = "物品入库情况") |
| | | private String warehouseSituation; |
| | | |
| | | @ApiModelProperty(value = "物品发放人") |
| | | private String itemIssue; |
| | | private String itemIssuer; |
| | | |
| | | @ApiModelProperty(value = "物品发放人ID") |
| | | private String itemIssuerId; |
| | | |
| | | @ApiModelProperty(value = "物品发放时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | |
| | | @ApiModelProperty(value = "年份") |
| | | private String year; |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "物品名称") |
| | | private String softwareName; |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "物品编号") |
| | | private String softwareIdentity; |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "其他要求") |
| | | private String itemRequireStr; |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "物品接收情况说明") |
| | | private String acceptSituationStr; |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "校准检测情况说明") |
| | | private String detectSituationStr; |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "物品发放情况说明") |
| | | private String issueSituationStr; |
| | | |
| | | |
| | | } |