package org.jeecg.modules.eam.entity; import java.io.Serializable; 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.TableLogic; import com.baomidou.mybatisplus.annotation.TableName; import lombok.Data; import com.fasterxml.jackson.annotation.JsonFormat; import org.jeecg.common.constant.CommonConstant; import org.jeecg.common.system.base.entity.JeecgEntity; import org.springframework.format.annotation.DateTimeFormat; import org.jeecgframework.poi.excel.annotation.Excel; import org.jeecg.common.aspect.annotation.Dict; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.EqualsAndHashCode; import lombok.experimental.Accessors; /** * @Description: mom_eam_specialty_maintenance_order * @Author: jeecg-boot * @Date: 2023-05-08 * @Version: V1.0 */ @Data @TableName("mom_eam_specialty_maintenance_order") @Accessors(chain = true) @EqualsAndHashCode(callSuper = false) @ApiModel(value="mom_eam_specialty_maintenance_order对象", description="mom_eam_specialty_maintenance_order") public class SpecialtyMaintenanceOrder extends JeecgEntity implements Serializable { private static final long serialVersionUID = 1L; /**专业保养工单号*/ @Excel(name = "专业保养工单号", width = 15) @ApiModelProperty(value = "专业保养工单号") private String num; /**专业保养方案id*/ @Excel(name = "专业保养方案id", width = 15) @ApiModelProperty(value = "专业保养方案id") private String specialtyMaintenancePlanId; /**实际开始时间*/ @Excel(name = "实际开始时间", width = 15, format = "yyyy-MM-dd") @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss") @DateTimeFormat(pattern="yyyy-MM-dd") @ApiModelProperty(value = "实际开始时间") private Date actualStartTime; /**实际结束时间*/ @Excel(name = "实际结束时间", width = 15, format = "yyyy-MM-dd") @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss") @DateTimeFormat(pattern="yyyy-MM-dd") @ApiModelProperty(value = "实际结束时间") private Date actualEndTime; /**保养人*/ @Excel(name = "保养人", width = 15) @ApiModelProperty(value = "保养人") private String maintenanceUserId; /**计划开始时间*/ @Excel(name = "计划开始时间", width = 15, format = "yyyy-MM-dd") @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss") @DateTimeFormat(pattern="yyyy-MM-dd") @ApiModelProperty(value = "计划开始时间") private Date planStartTime; /**计划结束时间*/ @Excel(name = "计划结束时间", width = 15, format = "yyyy-MM-dd") @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss") @DateTimeFormat(pattern="yyyy-MM-dd") @ApiModelProperty(value = "计划结束时间") private Date planEndTime; /**领取人id*/ @Excel(name = "领取人id", width = 15) @ApiModelProperty(value = "领取人id") private String recipientUserId; /**删除状态(0-正常,1-已删除)*/ @Excel(name = "删除状态(0-正常,1-已删除)", width = 15) @ApiModelProperty(value = "删除状态(0-正常,1-已删除)") @TableLogic private Integer delFlag = CommonConstant.DEL_FLAG_0; /**状态*/ @Excel(name = "状态", width = 15) @ApiModelProperty(value = "状态") private String status = CommonConstant.STATUS_1; /**备用字段1*/ @Excel(name = "备用字段1", width = 15) @ApiModelProperty(value = "备用字段1") private String maintenanceOrderUda1; /**备用字段2*/ @Excel(name = "备用字段2", width = 15) @ApiModelProperty(value = "备用字段2") private String maintenanceOrderUda2; /**备用字段3*/ @Excel(name = "备用字段3", width = 15) @ApiModelProperty(value = "备用字段3") private String maintenanceOrderUda3; /**备用字段4*/ @Excel(name = "备用字段4", width = 15) @ApiModelProperty(value = "备用字段4") private String maintenanceOrderUda4; /**备用字段5*/ @Excel(name = "备用字段5", width = 15) @ApiModelProperty(value = "备用字段5") private String maintenanceOrderUda5; /**创建类型(1手动创建,2自动创建)*/ @Excel(name = "创建类型(1手动创建,2自动创建)", width = 15) @ApiModelProperty(value = "创建类型(1手动创建,2自动创建)") private String createType; }