|
@@ -0,0 +1,161 @@
|
|
|
|
|
+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-07-21
|
|
|
|
|
+ */
|
|
|
|
|
+@TableName("pan_fosterwx_station_bind_box")
|
|
|
|
|
+public class FosterwxStationBindBox extends Model<FosterwxStationBindBox> {
|
|
|
|
|
+
|
|
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * id
|
|
|
|
|
+ */
|
|
|
|
|
+ @TableId(value = "id", type = IdType.AUTO)
|
|
|
|
|
+ private Integer id;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 站点id(pan_fosterwx_station.id)
|
|
|
|
|
+ */
|
|
|
|
|
+ private Integer stationId;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 类型(1.小程序2.公众号)
|
|
|
|
|
+ */
|
|
|
|
|
+ private Integer type;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * gh_id
|
|
|
|
|
+ */
|
|
|
|
|
+ private String ghId;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 小程序/公众号名称
|
|
|
|
|
+ */
|
|
|
|
|
+ private String boxName;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 使用场景
|
|
|
|
|
+ */
|
|
|
|
|
+ private String scope;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 上传人
|
|
|
|
|
+ */
|
|
|
|
|
+ private Integer uploadUid;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 创建时间
|
|
|
|
|
+ */
|
|
|
|
|
+ private LocalDateTime createAt;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 更新时间
|
|
|
|
|
+ */
|
|
|
|
|
+ private LocalDateTime updateAt;
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ public Integer getId() {
|
|
|
|
|
+ return id;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setId(Integer id) {
|
|
|
|
|
+ this.id = id;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public Integer getStationId() {
|
|
|
|
|
+ return stationId;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setStationId(Integer stationId) {
|
|
|
|
|
+ this.stationId = stationId;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public Integer getType() {
|
|
|
|
|
+ return type;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setType(Integer type) {
|
|
|
|
|
+ this.type = type;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getGhId() {
|
|
|
|
|
+ return ghId;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setGhId(String ghId) {
|
|
|
|
|
+ this.ghId = ghId;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getBoxName() {
|
|
|
|
|
+ return boxName;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setBoxName(String boxName) {
|
|
|
|
|
+ this.boxName = boxName;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getScope() {
|
|
|
|
|
+ return scope;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setScope(String scope) {
|
|
|
|
|
+ this.scope = scope;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public Integer getUploadUid() {
|
|
|
|
|
+ return uploadUid;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setUploadUid(Integer uploadUid) {
|
|
|
|
|
+ this.uploadUid = uploadUid;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ 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 "FosterwxStationBindBox{" +
|
|
|
|
|
+ "id=" + id +
|
|
|
|
|
+ ", stationId=" + stationId +
|
|
|
|
|
+ ", type=" + type +
|
|
|
|
|
+ ", ghId=" + ghId +
|
|
|
|
|
+ ", boxName=" + boxName +
|
|
|
|
|
+ ", scope=" + scope +
|
|
|
|
|
+ ", uploadUid=" + uploadUid +
|
|
|
|
|
+ ", createAt=" + createAt +
|
|
|
|
|
+ ", updateAt=" + updateAt +
|
|
|
|
|
+ "}";
|
|
|
|
|
+ }
|
|
|
|
|
+}
|