| | |
| | | package org.jeecg.modules.eam.entity; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | import lombok.experimental.Accessors; |
| | | import org.jeecg.common.aspect.annotation.Dict; |
| | | import org.jeecg.common.constant.CommonConstant; |
| | | import org.jeecg.common.system.base.entity.JeecgEntity; |
| | | import org.jeecgframework.poi.excel.annotation.Excel; |
| | |
| | | @ApiModel(value="mom_eam_daily_inspection_standard_detail对象", description="mom_eam_daily_inspection_standard_detail") |
| | | public class DailyInspectionStandardDetail extends JeecgEntity implements Serializable { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | |
| | | /**日常点检标准id*/ |
| | | @Excel(name = "日常点检标准id", width = 15) |
| | |
| | | @ApiModelProperty(value = "上次点检时间") |
| | | private String lastInspectionTime; |
| | | |
| | | @TableField(exist = false) |
| | | private String projectName; |
| | | @TableField(exist = false) |
| | | private String standard; |
| | | @TableField(exist = false) |
| | | @Dict(dicCode = "all_maintenance_type") |
| | | private String type; |
| | | @TableField(exist = false) |
| | | private String cycleName; |
| | | @TableField(exist = false) |
| | | private String equipmentId; |
| | | |
| | | } |