| | |
| | | import java.io.UnsupportedEncodingException; |
| | | import java.util.Date; |
| | | import java.math.BigDecimal; |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.baomidou.mybatisplus.annotation.TableLogic; |
| | | import java.util.List; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import lombok.Data; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import org.jeecg.common.constant.CommonConstant; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | import org.jeecgframework.poi.excel.annotation.Excel; |
| | | import org.jeecg.common.aspect.annotation.Dict; |
| | |
| | | /**设备判定结果*/ |
| | | @Excel(name = "设备判定结果", width = 15) |
| | | @ApiModelProperty(value = "设备判定结果") |
| | | private Integer judgmentResult; |
| | | private String judgmentResult; |
| | | /**备注*/ |
| | | @Excel(name = "备注", width = 15) |
| | | @ApiModelProperty(value = "备注") |
| | |
| | | @Excel(name = "delFlag", width = 15) |
| | | @ApiModelProperty(value = "delFlag") |
| | | @TableLogic |
| | | private Integer delFlag; |
| | | private Integer delFlag = CommonConstant.DEL_FLAG_0; |
| | | /**设备检验员签字(盖章)*/ |
| | | @Excel(name = "设备检验员签字(盖章)", width = 15) |
| | | @ApiModelProperty(value = "设备检验员签字(盖章)") |
| | | private String equipmentInspectorSignUser; |
| | | |
| | | /** |
| | | * 单据id |
| | | */ |
| | | @TableField(exist = false) |
| | | private String receipts; |
| | | |
| | | @TableField(exist = false) |
| | | private List<PrecisionInspectionDetail> precisionInspectionDetailList; |
| | | } |