|
|
@@ -0,0 +1,217 @@
|
|
|
+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-09
|
|
|
+ */
|
|
|
+@TableName("pan_fosterwx_cash_oas_box")
|
|
|
+public class FosterwxCashOasBox extends Model<FosterwxCashOasBox> {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * id
|
|
|
+ */
|
|
|
+ @TableId(value = "id", type = IdType.AUTO)
|
|
|
+ private Integer id;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 站点ID
|
|
|
+ */
|
|
|
+ private Integer stationId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 分组ID
|
|
|
+ */
|
|
|
+ private Integer groupId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 类型(1.小程序2.公众号)
|
|
|
+ */
|
|
|
+ private Integer type;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 小程序类型(对接珊瑚云类型)
|
|
|
+ */
|
|
|
+ private Integer boxType;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 小程序位置(1.发文小程序2.直跳小程序,单选)
|
|
|
+ */
|
|
|
+ private Integer boxLocation;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * gh_id
|
|
|
+ */
|
|
|
+ private String ghId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 小程序/公众号名称
|
|
|
+ */
|
|
|
+ private String name;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 使用场景
|
|
|
+ */
|
|
|
+ private String scope;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 备注
|
|
|
+ */
|
|
|
+ private String remark;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 上传人
|
|
|
+ */
|
|
|
+ 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 getGroupId() {
|
|
|
+ return groupId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGroupId(Integer groupId) {
|
|
|
+ this.groupId = groupId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getType() {
|
|
|
+ return type;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setType(Integer type) {
|
|
|
+ this.type = type;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getBoxType() {
|
|
|
+ return boxType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBoxType(Integer boxType) {
|
|
|
+ this.boxType = boxType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getBoxLocation() {
|
|
|
+ return boxLocation;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBoxLocation(Integer boxLocation) {
|
|
|
+ this.boxLocation = boxLocation;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getGhId() {
|
|
|
+ return ghId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGhId(String ghId) {
|
|
|
+ this.ghId = ghId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getName() {
|
|
|
+ return name;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setName(String name) {
|
|
|
+ this.name = name;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getScope() {
|
|
|
+ return scope;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setScope(String scope) {
|
|
|
+ this.scope = scope;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getRemark() {
|
|
|
+ return remark;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRemark(String remark) {
|
|
|
+ this.remark = remark;
|
|
|
+ }
|
|
|
+
|
|
|
+ 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 "FosterwxCashOasBox{" +
|
|
|
+ "id=" + id +
|
|
|
+ ", stationId=" + stationId +
|
|
|
+ ", groupId=" + groupId +
|
|
|
+ ", type=" + type +
|
|
|
+ ", boxType=" + boxType +
|
|
|
+ ", boxLocation=" + boxLocation +
|
|
|
+ ", ghId=" + ghId +
|
|
|
+ ", name=" + name +
|
|
|
+ ", scope=" + scope +
|
|
|
+ ", remark=" + remark +
|
|
|
+ ", uploadUid=" + uploadUid +
|
|
|
+ ", createAt=" + createAt +
|
|
|
+ ", updateAt=" + updateAt +
|
|
|
+ "}";
|
|
|
+ }
|
|
|
+}
|