| | |
| | | @TableName("jczz_place_ext") |
| | | @ApiModel(value = "PlaceExt对象", description = "场所详情表") |
| | | public class PlaceExtEntity implements Serializable { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * 主键 |
| | |
| | | @ApiModelProperty("主键id") |
| | | @TableId(value = "id", type = IdType.ASSIGN_ID) |
| | | private Long id; |
| | | |
| | | /** |
| | | * 任务id |
| | | */ |
| | | @ApiModelProperty(value = "任务id") |
| | | private Long taskId; |
| | | |
| | | /** |
| | | * 场所ID |
| | |
| | | */ |
| | | @ApiModelProperty(value = "场所平面图URLS") |
| | | private String planImageUrls; |
| | | |
| | | /** |
| | | * 确认用户ID |
| | | */ |
| | | @ApiModelProperty(value = "确认用户ID") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private Long confirmUserId; |
| | | /** |
| | | * 确认时间 |
| | | */ |
| | | @ApiModelProperty(value = "确认时间") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date confirmTime; |
| | | /** |
| | | * 确认标记 1:待审核 2:审核通过 3:审核不通过 |
| | | */ |
| | | @ApiModelProperty(value = "确认标记 1:待审核 2:审核通过 3:审核不通过") |
| | | private Integer confirmFlag; |
| | | /** |
| | | * 确认意见 |
| | | */ |
| | | @ApiModelProperty(value = "确认意见") |
| | | private String confirmNotion; |
| | | |
| | | /** |
| | | * 创建人 |
| | |
| | | @TableLogic |
| | | @ApiModelProperty("是否已删除 0:否 1:是") |
| | | private Integer isDeleted; |
| | | |
| | | } |