| | |
| | | package com.panzhihua.service_community.model.dos; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.FieldFill; |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | |
| | | import lombok.Data; |
| | | |
| | | /** |
| | | * @program: springcloud_k8s_panzhihuazhihuishequ |
| | |
| | | /** |
| | | * 自增id |
| | | */ |
| | | @TableId(type = IdType.AUTO) |
| | | @TableId(type = IdType.ASSIGN_ID) |
| | | private Long id; |
| | | |
| | | /** |
| | |
| | | private Long sponsorId; |
| | | |
| | | /** |
| | | * 1 随手拍 2网格治理 |
| | | */ |
| | | private String addType; |
| | | |
| | | /** |
| | | * 发生地址 |
| | | */ |
| | | private String happenAddr; |
| | | |
| | | /** |
| | | * 状态 1待审核 2进行中 3已驳回 4已完成 |
| | | * 状态 1待审核 2进行中 3已驳回 4待评价 5.已完成 |
| | | */ |
| | | private Integer status; |
| | | |
| | |
| | | private Integer isHide; |
| | | |
| | | /** |
| | | * 随手拍是否需要反馈 |
| | | * 0 不需要 1 需要 |
| | | * 随手拍是否需要反馈 0 不需要 1 需要 |
| | | */ |
| | | private Integer isNeedFeedBack; |
| | | /** |
| | |
| | | */ |
| | | private Long completeId; |
| | | /** |
| | | * 是否上报到人大代表( 0未上报 1已上报) |
| | | */ |
| | | private Integer isReportDpc; |
| | | /** |
| | | * 是否上报到城管( 0未上报 1已上报 2已退回) |
| | | */ |
| | | private Integer isReportUrban; |
| | |
| | | * 随手拍分类id |
| | | */ |
| | | private Long classifyId; |
| | | /** |
| | | * 单张图片宽度 |
| | | */ |
| | | private BigDecimal imgWidth; |
| | | /** |
| | | * 单张图片高度 |
| | | */ |
| | | private BigDecimal imgHeight; |
| | | /** |
| | | * 评价时间 |
| | | */ |
| | | private Date evaluateDate; |
| | | |
| | | /** |
| | | * 参加活动标签(1.优质 2.精良 3.普通 4.一般) |
| | | */ |
| | | public interface activityType{ |
| | | public interface activityType { |
| | | int yz = 1; |
| | | int jl = 2; |
| | | int pt = 3; |
| | |
| | | } |
| | | |
| | | /** |
| | | * 状态 1待审核 2进行中 3已驳回 4已完成 |
| | | * 状态 1待审核 2进行中 3已驳回 4待评价 5.已完成 |
| | | */ |
| | | public interface status{ |
| | | public interface status { |
| | | int dsh = 1; |
| | | int dfk = 2; |
| | | int ybh = 3; |
| | | int ywc = 4; |
| | | int dpj = 4; |
| | | int ypj = 5; |
| | | } |
| | | } |