From 70d2a5d0f9c6951b2d4cac954041ed73582ff7eb Mon Sep 17 00:00:00 2001 From: liujie <1793218484@qq.com> Date: 星期一, 09 六月 2025 11:54:00 +0800 Subject: [PATCH] 6.9新增登录失败冻结逻辑 --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActEasyPhotoDO.java | 222 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 222 insertions(+), 0 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActEasyPhotoDO.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActEasyPhotoDO.java new file mode 100644 index 0000000..e318157 --- /dev/null +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActEasyPhotoDO.java @@ -0,0 +1,222 @@ +package com.panzhihua.service_community.model.dos; + +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 + * @description: 随手拍 + * @author: huang.hongfa weixin hhf9596 qq 959656820 + * @create: 2020-12-07 14:21 + **/ +@Data +@TableName(value = "com_act_easy_photo") +public class ComActEasyPhotoDO implements Serializable { + private static final long serialVersionUID = 1L; + + /** + * 自增id + */ + @TableId(type = IdType.ASSIGN_ID) + private Long id; + + /** + * 发起人id + */ + private Long sponsorId; + + /** + * 1 随手拍 2网格治理 + */ + private String addType; + + /** + * 发生地址 + */ + private String happenAddr; + + /** + * 状态 1待审核 2进行中 3已驳回 4待评价 5.已完成 + */ + private Integer status; + + /** + * 处理人id + */ + private Long handlerId; + + /** + * 创建时间 + */ + @TableField(fill = FieldFill.INSERT) + private Date createAt; + + /** + * 审核时间 + */ + private Date examineAt; + + /** + * 详情 + */ + private String detail; + + /** + * 图片路径列表,逗号分隔 + */ + private String photoPathList; + + /** + * 处理结果 + */ + private String handleResult; + + /** + * 处理结果,图片路径列表,逗号分隔 + */ + private String handlePhotoList; + /** + * 社区id + */ + private Long communityId; + /** + * 是否匿名发布 + */ + private Integer isHide; + + /** + * 随手拍是否需要反馈 0 不需要 1 需要 + */ + private Integer isNeedFeedBack; + /** + * 反馈时间 + */ + private Date feedbackAt; + /** + * 拒绝原因 + */ + private String rejectReason; + /** + * 地址备注 + */ + private String addrRemark; + + /** + * 是否删除 0 否 1 是 + */ + private Integer delTag; + + /** + * 是否上报社区处理(0.否 1.是) + */ + private Integer isReport; + + /** + * 是否公示(0.否 1.是) + */ + private Integer isPublicity; + + /** + * 处理状态(1.待处理 2.已处理) + */ + private Integer handleStatus; + + /** + * 发生地址经纬度信息,逗号分割 + */ + private String lngLat; + + /** + * 活动id + */ + private Long activityId; + + /** + * 参加活动标签(1.优质 2.精良 3.普通) + */ + private Integer activityType; + + /** + * 活动奖励金额 + */ + private BigDecimal activityAmount; + /** + * 完成人id + */ + private Long completeId; + /** + * 是否上报到人大代表( 0未上报 1已上报) + */ + private Integer isReportDpc; + /** + * 是否上报到城管( 0未上报 1已上报 2已退回) + */ + private Integer isReportUrban; + /** + * 城管安排状态 (0未安排 1已安排 2已处理) + */ + private Integer urbanStatus; + /** + * 城管退回原因 + */ + private String backResult; + /** + * 移交时间 + */ + private Date transferTime; + /** + * 移交说明 + */ + private String transferReason; + /** + * 退回时间 + */ + private Date backTime; + /** + * 随手拍分类id + */ + private Long classifyId; + /** + * 单张图片宽度 + */ + private BigDecimal imgWidth; + /** + * 单张图片高度 + */ + private BigDecimal imgHeight; + /** + * 评价时间 + */ + private Date evaluateDate; + + /** + * 参加活动标签(1.优质 2.精良 3.普通 4.一般) + */ + public interface activityType { + int yz = 1; + int jl = 2; + int pt = 3; + int yb = 4; + int wu = 5; + } + + /** + * 状态 1待审核 2进行中 3已驳回 4待评价 5.已完成 + */ + public interface status { + int dsh = 1; + int dfk = 2; + int ybh = 3; + int dpj = 4; + int ypj = 5; + } +} -- Gitblit v1.7.1