| | |
| | | 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 com.baomidou.mybatisplus.annotation.*; |
| | | import com.fasterxml.jackson.annotation.JsonIgnoreProperties; |
| | | import lombok.Data; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | |
| | | @ApiModelProperty(value = "maintenanceOrderId") |
| | | private String maintenanceOrderId; |
| | | /**planStartTime*/ |
| | | @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") |
| | | @Excel(name = "planStartTime", width = 15, format = "yyyy-MM-dd HH:mm") |
| | | @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm") |
| | | @DateTimeFormat(pattern="yyyy-MM-dd HH:mm") |
| | | @ApiModelProperty(value = "planStartTime") |
| | | private Date planStartTime; |
| | | /**planDelayTime*/ |
| | | @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") |
| | | @Excel(name = "planDelayTime", width = 15, format = "yyyy-MM-dd HH:mm") |
| | | @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm") |
| | | @DateTimeFormat(pattern="yyyy-MM-dd HH:mm") |
| | | @ApiModelProperty(value = "planDelayTime") |
| | | private Date planDelayTime; |
| | | /**planUser*/ |
| | |
| | | @ApiModelProperty(value = "delFlag") |
| | | @TableLogic |
| | | private Integer delFlag = CommonConstant.DEL_FLAG_0; |
| | | @TableField(exist = false) |
| | | private String planId; |
| | | |
| | | } |