| | |
| | | import com.baomidou.mybatisplus.annotation.TableLogic; |
| | | import lombok.Data; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import org.jeecg.common.aspect.annotation.Dict; |
| | | import org.jeecg.common.system.base.entity.JeecgEntity; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | import org.jeecgframework.poi.excel.annotation.Excel; |
| | |
| | | public class OperationCertificateDetail extends JeecgEntity implements Serializable { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | |
| | | @Excel(name = "发生日期", width = 15, format = "yyyy-MM-dd") |
| | | @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd") |
| | | @DateTimeFormat(pattern="yyyy-MM-dd") |
| | | @ApiModelProperty(value = "发生日期") |
| | | private Date happenDate; |
| | | /**证书ID*/ |
| | | @ApiModelProperty(value = "证书ID") |
| | | private String operationCertificateId; |
| | | /**类型*/ |
| | | @Excel(name = "类型", width = 15) |
| | | @ApiModelProperty(value = "类型") |
| | | @Dict(dicCode = "certificate_change_type") |
| | | private String type; |
| | | /**设备id*/ |
| | | @Excel(name = "设备id", width = 15) |
| | |
| | | /**扣分项*/ |
| | | @Excel(name = "扣分项", width = 15) |
| | | @ApiModelProperty(value = "扣分项") |
| | | @Dict(dictTable = "mom_eam_base_deduction_item", dicText = "content", dicCode = "id") |
| | | private String deductionItem; |
| | | /**扣分周期*/ |
| | | @Excel(name = "扣分周期", width = 15) |