|
|
@@ -0,0 +1,174 @@
|
|
|
+package com.mokamrp.privates.mapper.pangu.pojo;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
+import com.baomidou.mybatisplus.extension.activerecord.Model;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+import java.time.LocalDateTime;
|
|
|
+import java.io.Serializable;
|
|
|
+
|
|
|
+/**
|
|
|
+ * <p>
|
|
|
+ * 盘古养号账号封禁记录
|
|
|
+ * </p>
|
|
|
+ *
|
|
|
+ * @author leon
|
|
|
+ * @since 2021-11-13
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@TableName("pan_fosterwx_mobile_forbidden_record")
|
|
|
+public class FosterwxMobileForbiddenRecord extends Model<FosterwxMobileForbiddenRecord> {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * ID
|
|
|
+ */
|
|
|
+ @TableId(value = "id", type = IdType.AUTO)
|
|
|
+ private Integer id;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 封禁类型(1.个微2.企微)
|
|
|
+ */
|
|
|
+ private Integer type;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 解封好友
|
|
|
+ */
|
|
|
+ private Integer unsealFriendId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 新解封好友
|
|
|
+ */
|
|
|
+ private Integer switchUnsealFriendId;
|
|
|
+
|
|
|
+ @TableField(exist = false)
|
|
|
+ private String unsealWxName;
|
|
|
+ @TableField(exist = false)
|
|
|
+ private String unsealWxUsername;
|
|
|
+ @TableField(exist = false)
|
|
|
+ private String switchUnsealWxName;
|
|
|
+ @TableField(exist = false)
|
|
|
+ private String switchUnsealWxUsername;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 账号封禁截图
|
|
|
+ */
|
|
|
+ private String forbiddenImage;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 封禁时间
|
|
|
+ */
|
|
|
+ private LocalDateTime forbiddenAt;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 解封时间
|
|
|
+ */
|
|
|
+ private LocalDateTime unsealAt;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 创建时间
|
|
|
+ */
|
|
|
+ private LocalDateTime createAt;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 更新时间
|
|
|
+ */
|
|
|
+ private LocalDateTime updateAt;
|
|
|
+
|
|
|
+
|
|
|
+ public Integer getId() {
|
|
|
+ return id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId(Integer id) {
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getType() {
|
|
|
+ return type;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setType(Integer type) {
|
|
|
+ this.type = type;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getUnsealFriendId() {
|
|
|
+ return unsealFriendId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUnsealFriendId(Integer unsealFriendId) {
|
|
|
+ this.unsealFriendId = unsealFriendId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getSwitchUnsealFriendId() {
|
|
|
+ return switchUnsealFriendId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSwitchUnsealFriendId(Integer switchUnsealFriendId) {
|
|
|
+ this.switchUnsealFriendId = switchUnsealFriendId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getForbiddenImage() {
|
|
|
+ return forbiddenImage;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setForbiddenImage(String forbiddenImage) {
|
|
|
+ this.forbiddenImage = forbiddenImage;
|
|
|
+ }
|
|
|
+
|
|
|
+ public LocalDateTime getForbiddenAt() {
|
|
|
+ return forbiddenAt;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setForbiddenAt(LocalDateTime forbiddenAt) {
|
|
|
+ this.forbiddenAt = forbiddenAt;
|
|
|
+ }
|
|
|
+
|
|
|
+ public LocalDateTime getUnsealAt() {
|
|
|
+ return unsealAt;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUnsealAt(LocalDateTime unsealAt) {
|
|
|
+ this.unsealAt = unsealAt;
|
|
|
+ }
|
|
|
+
|
|
|
+ public LocalDateTime getCreateAt() {
|
|
|
+ return createAt;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreateAt(LocalDateTime createAt) {
|
|
|
+ this.createAt = createAt;
|
|
|
+ }
|
|
|
+
|
|
|
+ public LocalDateTime getUpdateAt() {
|
|
|
+ return updateAt;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUpdateAt(LocalDateTime updateAt) {
|
|
|
+ this.updateAt = updateAt;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ protected Serializable pkVal() {
|
|
|
+ return this.id;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public String toString() {
|
|
|
+ return "FosterwxMobileForbiddenRecord{" +
|
|
|
+ "id=" + id +
|
|
|
+ ", type=" + type +
|
|
|
+ ", unsealFriendId=" + unsealFriendId +
|
|
|
+ ", switchUnsealFriendId=" + switchUnsealFriendId +
|
|
|
+ ", forbiddenImage=" + forbiddenImage +
|
|
|
+ ", forbiddenAt=" + forbiddenAt +
|
|
|
+ ", unsealAt=" + unsealAt +
|
|
|
+ ", createAt=" + createAt +
|
|
|
+ ", updateAt=" + updateAt +
|
|
|
+ "}";
|
|
|
+ }
|
|
|
+}
|