|
|
@@ -0,0 +1,147 @@
|
|
|
+package com.mokamrp.privates.mapper.pangu.pojo;
|
|
|
+
|
|
|
+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 java.time.LocalDateTime;
|
|
|
+import java.io.Serializable;
|
|
|
+
|
|
|
+/**
|
|
|
+ * <p>
|
|
|
+ * 盘古养号域名库
|
|
|
+ * </p>
|
|
|
+ *
|
|
|
+ * @author leon
|
|
|
+ * @since 2021-10-15
|
|
|
+ */
|
|
|
+@TableName("pan_fosterwx_domain")
|
|
|
+public class FosterwxDomain extends Model<FosterwxDomain> {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * id
|
|
|
+ */
|
|
|
+ @TableId(value = "id", type = IdType.AUTO)
|
|
|
+ private Integer id;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 部门ID
|
|
|
+ */
|
|
|
+ private String deptId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 域名
|
|
|
+ */
|
|
|
+ private String domain;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 是否备案 1备案 2未备案
|
|
|
+ */
|
|
|
+ private Integer isRecord;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 状态 1正常 2异常
|
|
|
+ */
|
|
|
+ private Integer status;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 封禁时间
|
|
|
+ */
|
|
|
+ private LocalDateTime forbbidenAt;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 创建时间
|
|
|
+ */
|
|
|
+ private LocalDateTime createAt;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 更新时间
|
|
|
+ */
|
|
|
+ private LocalDateTime updateAt;
|
|
|
+
|
|
|
+
|
|
|
+ public Integer getId() {
|
|
|
+ return id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId(Integer id) {
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getDeptId() {
|
|
|
+ return deptId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDeptId(String deptId) {
|
|
|
+ this.deptId = deptId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getDomain() {
|
|
|
+ return domain;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDomain(String domain) {
|
|
|
+ this.domain = domain;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getIsRecord() {
|
|
|
+ return isRecord;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIsRecord(Integer isRecord) {
|
|
|
+ this.isRecord = isRecord;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getStatus() {
|
|
|
+ return status;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStatus(Integer status) {
|
|
|
+ this.status = status;
|
|
|
+ }
|
|
|
+
|
|
|
+ public LocalDateTime getForbbidenAt() {
|
|
|
+ return forbbidenAt;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setForbbidenAt(LocalDateTime forbbidenAt) {
|
|
|
+ this.forbbidenAt = forbbidenAt;
|
|
|
+ }
|
|
|
+
|
|
|
+ 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 "FosterwxDomain{" +
|
|
|
+ "id=" + id +
|
|
|
+ ", deptId=" + deptId +
|
|
|
+ ", domain=" + domain +
|
|
|
+ ", isRecord=" + isRecord +
|
|
|
+ ", status=" + status +
|
|
|
+ ", forbbidenAt=" + forbbidenAt +
|
|
|
+ ", createAt=" + createAt +
|
|
|
+ ", updateAt=" + updateAt +
|
|
|
+ "}";
|
|
|
+ }
|
|
|
+}
|