| | |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.baomidou.mybatisplus.annotation.TableLogic; |
| | | import com.fasterxml.jackson.annotation.JsonIgnoreProperties; |
| | | 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; |
| | |
| | | @Accessors(chain = true) |
| | | @EqualsAndHashCode(callSuper = false) |
| | | @ApiModel(value="mom_eam_plan_change_apply对象", description="mom_eam_plan_change_apply") |
| | | public class PlanChangeApply implements Serializable { |
| | | public class PlanChangeApply extends JeecgEntity implements Serializable { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /**id*/ |
| | | @TableId(type = IdType.ASSIGN_ID) |
| | | @ApiModelProperty(value = "id") |
| | | private String id; |
| | | /**applyUnit*/ |
| | | @Excel(name = "applyUnit", width = 15) |
| | | @ApiModelProperty(value = "applyUnit") |
| | |
| | | @ApiModelProperty(value = "maintenanceOrderId") |
| | | private String maintenanceOrderId; |
| | | /**planStartTime*/ |
| | | @Excel(name = "planStartTime", width = 15, format = "yyyy-MM-dd") |
| | | @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd") |
| | | @DateTimeFormat(pattern="yyyy-MM-dd") |
| | | @Excel(name = "planStartTime", width = 15, format = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") |
| | | @ApiModelProperty(value = "planStartTime") |
| | | private Date planStartTime; |
| | | /**planDelayTime*/ |
| | | @Excel(name = "planDelayTime", width = 15, format = "yyyy-MM-dd") |
| | | @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd") |
| | | @DateTimeFormat(pattern="yyyy-MM-dd") |
| | | @Excel(name = "planDelayTime", width = 15, format = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") |
| | | @ApiModelProperty(value = "planDelayTime") |
| | | private Date planDelayTime; |
| | | /**planUser*/ |
| | |
| | | @ApiModelProperty(value = "delayReason") |
| | | private String delayReason; |
| | | /**annex*/ |
| | | @Excel(name = "annex", width = 15) |
| | | @ApiModelProperty(value = "annex") |
| | | private String annex; |
| | | @Excel(name = "附件名称", width = 15) |
| | | @ApiModelProperty(value = "附件名称") |
| | | private String annexName; |
| | | |
| | | @Excel(name = "附件大小", width = 15) |
| | | @ApiModelProperty(value = "附件大小") |
| | | private String annexSize; |
| | | |
| | | @Excel(name = "路径", width = 15) |
| | | @ApiModelProperty(value = "路径") |
| | | private String annexPath; |
| | | /**remark*/ |
| | | @Excel(name = "remark", width = 15) |
| | | @ApiModelProperty(value = "remark") |
| | | private String remark; |
| | | /**createBy*/ |
| | | @ApiModelProperty(value = "createBy") |
| | | private String createBy; |
| | | /**createTime*/ |
| | | @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd") |
| | | @DateTimeFormat(pattern="yyyy-MM-dd") |
| | | @ApiModelProperty(value = "createTime") |
| | | private Date createTime; |
| | | /**updateBy*/ |
| | | @ApiModelProperty(value = "updateBy") |
| | | private String updateBy; |
| | | /**updateTime*/ |
| | | @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd") |
| | | @DateTimeFormat(pattern="yyyy-MM-dd") |
| | | @ApiModelProperty(value = "updateTime") |
| | | private Date updateTime; |
| | | |
| | | /**tenantId*/ |
| | | @Excel(name = "tenantId", width = 15) |
| | | @ApiModelProperty(value = "tenantId") |
| | |
| | | @Excel(name = "delFlag", width = 15) |
| | | @ApiModelProperty(value = "delFlag") |
| | | @TableLogic |
| | | private Integer delFlag; |
| | | private Integer delFlag = CommonConstant.DEL_FLAG_0; |
| | | } |