Browse Source

删除adweb-site 冗余字段,更改对应mapping

chenlei1231 4 months ago
parent
commit
83f5ca9273

+ 296 - 207
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/site/entity/AdwebSite.java

@@ -1,371 +1,460 @@
 package org.jeecg.modules.adweb.site.entity;
 
-import java.io.Serializable;
-import java.util.Date;
-
 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 com.fasterxml.jackson.annotation.JsonFormat;
-
 import io.swagger.v3.oas.annotations.media.Schema;
-
 import lombok.Data;
 import lombok.EqualsAndHashCode;
 import lombok.experimental.Accessors;
-
 import org.jeecg.common.aspect.annotation.Dict;
 import org.jeecgframework.poi.excel.annotation.Excel;
 import org.springframework.format.annotation.DateTimeFormat;
 
 import java.io.Serializable;
+import java.util.Date;
 
 /**
  * @Description: adweb站点配置表单
  * @Author: jeecg-boot
- * @Date:   2024-09-29
+ * @Date: 2024-09-29
  * @Version: V1.0
  */
 @Data
 @TableName("adweb_site")
 @Accessors(chain = true)
 @EqualsAndHashCode(callSuper = false)
-@Schema(description="adweb站点配置表单")
+@Schema(description = "adweb站点配置表单")
 public class AdwebSite implements Serializable {
     private static final long serialVersionUID = 1L;
 
-	/**站点主键ID*/
-	@TableId(type = IdType.ASSIGN_ID)
+    /**
+     * 站点主键ID
+     */
+    @TableId(type = IdType.ASSIGN_ID)
     @Schema(description = "站点主键ID")
     private java.lang.Integer id;
-	/**用户ID,与用户表关联*/
-	@Excel(name = "用户ID,与用户表关联", width = 15, dictTable = "sys_user", dicText = "realname", dicCode = "id")
-	@Dict(dictTable = "sys_user", dicText = "realname", dicCode = "id")
+    /**
+     * 用户ID,与用户表关联
+     */
+    @Excel(name = "用户ID,与用户表关联", width = 15, dictTable = "sys_user", dicText = "realname", dicCode = "id")
+    @Dict(dictTable = "sys_user", dicText = "realname", dicCode = "id")
     @Schema(description = "用户ID,与用户表关联")
     private java.lang.String uid;
-	/**站点code,生成6位长度随机码,取值范围[a-z0-9],保证系统唯一*/
-	@Excel(name = "站点code,生成6位长度随机码,取值范围[a-z0-9],保证系统唯一", width = 15)
+    /**
+     * 站点code,生成6位长度随机码,取值范围[a-z0-9],保证系统唯一
+     */
+    @Excel(name = "站点code,生成6位长度随机码,取值范围[a-z0-9],保证系统唯一", width = 15)
     @Schema(description = "站点code,生成6位长度随机码,取值范围[a-z0-9],保证系统唯一")
     private java.lang.String code;
-	/**站点名称*/
-	@Excel(name = "站点名称", width = 15)
+    /**
+     * 站点名称
+     */
+    @Excel(name = "站点名称", width = 15)
     @Schema(description = "站点名称")
     private java.lang.String name;
-	/**站点域名*/
-	@Excel(name = "站点域名", width = 15)
+    /**
+     * 站点域名
+     */
+    @Excel(name = "站点域名", width = 15)
     @Schema(description = "站点域名")
     private java.lang.String domain;
-	/**站点备注*/
-	@Excel(name = "站点备注", width = 15)
+    /**
+     * 站点备注
+     */
+    @Excel(name = "站点备注", width = 15)
     @Schema(description = "站点备注")
     private java.lang.String descirbe;
-	/**测试站点域名*/
-	@Excel(name = "测试站点域名", width = 15)
+    /**
+     * 测试站点域名
+     */
+    @Excel(name = "测试站点域名", width = 15)
     @Schema(description = "测试站点域名")
     private java.lang.String domainDev;
-	/**是否有域名*/
-	@Excel(name = "是否有域名", width = 15)
+    /**
+     * 是否有域名
+     */
+    @Excel(name = "是否有域名", width = 15)
     @Schema(description = "是否有域名")
     private java.lang.Integer isDomain;
-	/**CNAME记录*/
-	@Excel(name = "CNAME记录", width = 15)
+    /**
+     * CNAME记录
+     */
+    @Excel(name = "CNAME记录", width = 15)
     @Schema(description = "CNAME记录")
     private java.lang.String cname;
-	/**模板code*/
-	@Excel(name = "模板code", width = 15)
+    /**
+     * 模板code
+     */
+    @Excel(name = "模板code", width = 15)
     @Schema(description = "模板code")
     private java.lang.String parentCode;
-	/**模板域名*/
-	@Excel(name = "模板域名", width = 15)
+    /**
+     * 模板域名
+     */
+    @Excel(name = "模板域名", width = 15)
     @Schema(description = "模板域名")
     private java.lang.String templateDomain;
-	/**站点状态:0:创建失败,1:正常运行,2:运行异常
-3:站点停止*/
-	@Excel(name = "站点状态:0:创建失败,1:正常运行,2:运行异常 3:站点停止", width = 15)
+    /**
+     * 站点状态:0:创建失败,1:正常运行,2:运行异常
+     * 3:站点停止
+     */
+    @Excel(name = "站点状态:0:创建失败,1:正常运行,2:运行异常 3:站点停止", width = 15)
     @Schema(description = "站点状态:0:创建失败,1:正常运行,2:运行异常 3:站点停止")
     private java.lang.Integer runStatus;
-	/**当前状态:0:已删除;1:正常;2:未发布  3:拉取测试站点中 ;4:发布正式站点中 ;5:拉取异常*/
-	@Excel(name = "当前状态:0:已删除;1:正常;2:未发布  3:拉取测试站点中 ;4:发布正式站点中 ;5:拉取异常", width = 15)
+    /**
+     * 当前状态:0:已删除;1:正常;2:未发布  3:拉取测试站点中 ;4:发布正式站点中 ;5:拉取异常
+     */
+    @Excel(name = "当前状态:0:已删除;1:正常;2:未发布  3:拉取测试站点中 ;4:发布正式站点中 ;5:拉取异常", width = 15)
     @Schema(description = "当前状态:0:已删除;1:正常;2:未发布  3:拉取测试站点中 ;4:发布正式站点中 ;5:拉取异常")
     private java.lang.Integer status;
-	/**创建时间*/
-	@Excel(name = "创建时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
-	@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
-    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
+    /**
+     * 创建时间
+     */
+    @Excel(name = "创建时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
+    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
+    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
     @Schema(description = "创建时间")
     private java.util.Date ctime;
-	/**修改时间*/
-	@Excel(name = "修改时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
-	@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
-    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
+    /**
+     * 修改时间
+     */
+    @Excel(name = "修改时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
+    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
+    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
     @Schema(description = "修改时间")
     private java.util.Date utime;
-	/**到期时间,默认为ctime+1年*/
-	@Excel(name = "到期时间,默认为ctime+1年", width = 20, format = "yyyy-MM-dd HH:mm:ss")
-	@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
-    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
+    /**
+     * 到期时间,默认为ctime+1年
+     */
+    @Excel(name = "到期时间,默认为ctime+1年", width = 20, format = "yyyy-MM-dd HH:mm:ss")
+    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
+    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
     @Schema(description = "到期时间,默认为ctime+1年")
     private java.util.Date etime;
-	/**站点大小*/
-	@Excel(name = "站点大小", width = 15)
+    /**
+     * 站点大小
+     */
+    @Excel(name = "站点大小", width = 15)
     @Schema(description = "站点大小")
     private java.lang.String siteSize;
-	/**站点更新时间*/
-	@Excel(name = "站点更新时间", width = 15)
+    /**
+     * 站点更新时间
+     */
+    @Excel(name = "站点更新时间", width = 15)
     @Schema(description = "站点更新时间")
     private java.lang.String siteUpdateTime;
-	/**公钥*/
-	@Excel(name = "公钥", width = 15)
+    /**
+     * 公钥
+     */
+    @Excel(name = "公钥", width = 15)
     @Schema(description = "公钥")
     private java.lang.String siteCert;
-	/**私钥*/
-	@Excel(name = "私钥", width = 15)
+    /**
+     * 私钥
+     */
+    @Excel(name = "私钥", width = 15)
     @Schema(description = "私钥")
     private java.lang.String sitePrivkey;
-	/**证书链*/
-	@Excel(name = "证书链", width = 15)
+    /**
+     * 证书链
+     */
+    @Excel(name = "证书链", width = 15)
     @Schema(description = "证书链")
     private java.lang.String siteChain;
-	/**证书上次修改时间*/
-	@Excel(name = "证书上次修改时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
-	@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
-    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
+    /**
+     * 证书上次修改时间
+     */
+    @Excel(name = "证书上次修改时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
+    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
+    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
     @Schema(description = "证书上次修改时间")
     private java.util.Date cretModifyTime;
-	/**证书上次修改时间*/
-	@Excel(name = "证书上次修改时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
-	@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
-    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
+    /**
+     * 证书上次修改时间
+     */
+    @Excel(name = "证书上次修改时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
+    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
+    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
     @Schema(description = "证书上次修改时间")
     private java.util.Date stopTime;
-	/**站点停止人*/
-	@Excel(name = "站点停止人", width = 15)
+    /**
+     * 站点停止人
+     */
+    @Excel(name = "站点停止人", width = 15)
     @Schema(description = "站点停止人")
     private java.lang.String stopUid;
-	/**释放时间*/
-	@Excel(name = "释放时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
-	@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
-    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
+    /**
+     * 释放时间
+     */
+    @Excel(name = "释放时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
+    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
+    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
     @Schema(description = "释放时间")
     private java.util.Date releaseTime;
-	/**释放人*/
-	@Excel(name = "释放人", width = 15)
+    /**
+     * 释放人
+     */
+    @Excel(name = "释放人", width = 15)
     @Schema(description = "释放人")
     private java.lang.String releaseUid;
-	/**ssl添加方式  1:自动   0:手动*/
-	@Excel(name = "ssl添加方式  1:自动   0:手动", width = 15)
+    /**
+     * ssl添加方式  1:自动   0:手动
+     */
+    @Excel(name = "ssl添加方式  1:自动   0:手动", width = 15)
     @Schema(description = "ssl添加方式  1:自动   0:手动")
     private java.lang.Integer sslOrigin;
-	/**证书到期时间*/
-	@Excel(name = "证书到期时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
-	@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
-    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
+    /**
+     * 证书到期时间
+     */
+    @Excel(name = "证书到期时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
+    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
+    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
     @Schema(description = "证书到期时间")
     private java.util.Date cretExpirationTime;
-	/**发布正式环境时间(首次发布)*/
-	@Excel(name = "发布正式环境时间(首次发布)", width = 20, format = "yyyy-MM-dd HH:mm:ss")
-	@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
-    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
+    /**
+     * 发布正式环境时间(首次发布)
+     */
+    @Excel(name = "发布正式环境时间(首次发布)", width = 20, format = "yyyy-MM-dd HH:mm:ss")
+    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
+    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
     @Schema(description = "发布正式环境时间(首次发布)")
     private java.util.Date issueTime;
-	/**售后到期时间*/
-	@Excel(name = "售后到期时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
-	@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
-    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
+    /**
+     * 售后到期时间
+     */
+    @Excel(name = "售后到期时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
+    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
+    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
     @Schema(description = "售后到期时间")
     private java.util.Date aftersaleTime;
-	/**当日询盘条数*/
-	@Excel(name = "当日询盘条数", width = 15)
+    /**
+     * 当日询盘条数
+     */
+    @Excel(name = "当日询盘条数", width = 15)
     @Schema(description = "当日询盘条数")
     private java.lang.Integer dayEnquiryCount;
-	/**站点类型,1:模板,2:站点*/
-	@Excel(name = "站点类型,1:模板,2:站点", width = 15)
+    /**
+     * 站点类型,1:模板,2:站点
+     */
+    @Excel(name = "站点类型,1:模板,2:站点", width = 15)
     @Schema(description = "站点类型,1:模板,2:站点")
     private java.lang.Integer siteType;
-	/**上架状态:0:未上架;1:已上架;默认0*/
-	@Excel(name = "上架状态:0:未上架;1:已上架;默认0", width = 15)
+    /**
+     * 上架状态:0:未上架;1:已上架;默认0
+     */
+    @Excel(name = "上架状态:0:未上架;1:已上架;默认0", width = 15)
     @Schema(description = "上架状态:0:未上架;1:已上架;默认0")
     private java.lang.Integer putaway;
-	/**图片路径*/
-	@Excel(name = "图片路径", width = 15)
+    /**
+     * 图片路径
+     */
+    @Excel(name = "图片路径", width = 15)
     @Schema(description = "图片路径")
     private java.lang.String images;
-	/**复制来源*/
-	@Excel(name = "复制来源", width = 15)
+    /**
+     * 复制来源
+     */
+    @Excel(name = "复制来源", width = 15)
     @Schema(description = "复制来源")
     private java.lang.String source;
-	/**模板价格*/
-	@Excel(name = "模板价格", width = 15)
-    @Schema(description = "模板价格")
-    private java.math.BigDecimal templatePrice;
-	/**templateTags*/
-	@Excel(name = "templateTags", width = 15)
-    @Schema(description = "templateTags")
-    private java.lang.Integer templateTags;
-	/**主题颜色ID*/
-	@Excel(name = "主题颜色ID", width = 15)
-    @Schema(description = "主题颜色ID")
-    private java.lang.Integer templateColorId;
-	/**主题技术方案ID*/
-	@Excel(name = "主题技术方案ID", width = 15)
-    @Schema(description = "主题技术方案ID")
-    private java.lang.Integer templateTechnologyId;
-	/**创建时间*/
-	@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
-    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
+
+    /**
+     * 创建时间
+     */
+    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
+    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
     @Schema(description = "创建时间")
     private java.util.Date createTime;
-	/**parentGroupCode*/
-	@Excel(name = "parentGroupCode", width = 15)
+    /**
+     * parentGroupCode
+     */
+    @Excel(name = "parentGroupCode", width = 15)
     @Schema(description = "parentGroupCode")
     private java.lang.String parentGroupCode;
-	/**languageCode*/
-	@Excel(name = "languageCode", width = 15)
+    /**
+     * languageCode
+     */
+    @Excel(name = "languageCode", width = 15)
     @Schema(description = "languageCode")
     private java.lang.String languageCode;
-	/**tdk*/
-	@Excel(name = "tdk", width = 15)
+    /**
+     * tdk
+     */
+    @Excel(name = "tdk", width = 15)
     @Schema(description = "tdk")
     private java.lang.String tdk;
-	/**排序*/
-	@Excel(name = "排序", width = 15)
+    /**
+     * 排序
+     */
+    @Excel(name = "排序", width = 15)
     @Schema(description = "排序")
     private java.lang.Integer sort;
-	/**keywordsNum*/
-	@Excel(name = "keywordsNum", width = 15)
+    /**
+     * keywordsNum
+     */
+    @Excel(name = "keywordsNum", width = 15)
     @Schema(description = "keywordsNum")
     private java.lang.Integer keywordsNum;
-	/**externalTemplate*/
-	@Excel(name = "externalTemplate", width = 15)
+    /**
+     * externalTemplate
+     */
+    @Excel(name = "externalTemplate", width = 15)
     @Schema(description = "externalTemplate")
     private java.lang.Integer externalTemplate;
-	/**developmentStatus*/
-	@Excel(name = "developmentStatus", width = 15)
+    /**
+     * developmentStatus
+     */
+    @Excel(name = "developmentStatus", width = 15)
     @Schema(description = "developmentStatus")
     private java.lang.Integer developmentStatus;
-	/**externalTemplateUrl*/
-	@Excel(name = "externalTemplateUrl", width = 15)
+    /**
+     * externalTemplateUrl
+     */
+    @Excel(name = "externalTemplateUrl", width = 15)
     @Schema(description = "externalTemplateUrl")
     private java.lang.String externalTemplateUrl;
-	/**recomPicSize*/
-	@Excel(name = "recomPicSize", width = 15)
+    /**
+     * recomPicSize
+     */
+    @Excel(name = "recomPicSize", width = 15)
     @Schema(description = "recomPicSize")
     private java.lang.String recomPicSize;
-	/**内容管理url*/
-	@Excel(name = "内容管理url", width = 15)
+    /**
+     * 内容管理url
+     */
+    @Excel(name = "内容管理url", width = 15)
     @Schema(description = "内容管理url")
     private java.lang.String manageUrl;
-	/**sys系统创建;manual关联*/
-	@Excel(name = "sys系统创建;manual关联", width = 15)
+    /**
+     * sys系统创建;manual关联
+     */
+    @Excel(name = "sys系统创建;manual关联", width = 15)
     @Schema(description = "sys系统创建;manual关联")
     private java.lang.String createType;
-	/**建站流程的状态,0未完成,1已完成,2不存在流程*/
-	@Excel(name = "建站流程的状态,0未完成,1已完成,2不存在流程", width = 15)
+    /**
+     * 建站流程的状态,0未完成,1已完成,2不存在流程
+     */
+    @Excel(name = "建站流程的状态,0未完成,1已完成,2不存在流程", width = 15)
     @Schema(description = "建站流程的状态,0未完成,1已完成,2不存在流程")
     private java.lang.Integer siteFlowStatus;
-	/**建站流程当前所在的步骤*/
-	@Excel(name = "建站流程当前所在的步骤", width = 15)
+    /**
+     * 建站流程当前所在的步骤
+     */
+    @Excel(name = "建站流程当前所在的步骤", width = 15)
     @Schema(description = "建站流程当前所在的步骤")
     private java.lang.String siteCurrentStep;
-	/**seo流程的状态,0未完成,1已完成,2不存在流程*/
-	@Excel(name = "seo流程的状态,0未完成,1已完成,2不存在流程", width = 15)
+    /**
+     * seo流程的状态,0未完成,1已完成,2不存在流程
+     */
+    @Excel(name = "seo流程的状态,0未完成,1已完成,2不存在流程", width = 15)
     @Schema(description = "seo流程的状态,0未完成,1已完成,2不存在流程")
     private java.lang.Integer seoFlowStatus;
-	/**seo流程当前所在的步骤*/
-	@Excel(name = "seo流程当前所在的步骤", width = 15)
+    /**
+     * seo流程当前所在的步骤
+     */
+    @Excel(name = "seo流程当前所在的步骤", width = 15)
     @Schema(description = "seo流程当前所在的步骤")
     private java.lang.String seoCurrentStep;
-	/**内部模板编号(人工录入)*/
-	@Excel(name = "内部模板编号(人工录入)", width = 15)
+    /**
+     * 内部模板编号(人工录入)
+     */
+    @Excel(name = "内部模板编号(人工录入)", width = 15)
     @Schema(description = "内部模板编号(人工录入)")
     private java.lang.String inCode;
-	/**commerce的key*/
-	@Excel(name = "commerce的key", width = 15)
-    @Schema(description = "commerce的key")
-    private java.lang.String commerceKey;
-	/**commerce的secret*/
-	@Excel(name = "commerce的secret", width = 15)
-    @Schema(description = "commerce的secret")
-    private java.lang.String commerceSecret;
-	/**负责人ID*/
-	@Excel(name = "负责人ID", width = 15)
+
+    /**
+     * 负责人ID
+     */
+    @Excel(name = "负责人ID", width = 15)
     @Schema(description = "负责人ID")
     private java.lang.String principalId;
-	/**负责人姓名*/
-	@Excel(name = "负责人姓名", width = 15)
+    /**
+     * 负责人姓名
+     */
+    @Excel(name = "负责人姓名", width = 15)
     @Schema(description = "负责人姓名")
     private java.lang.String principalName;
-	/**wp插件用户名*/
-	@Excel(name = "wp插件用户名", width = 15)
-    @Schema(description = "wp插件用户名")
-    private java.lang.String wpName;
-	/**wp插件密码*/
-	@Excel(name = "wp插件密码", width = 15)
-    @Schema(description = "wp插件密码")
-    private java.lang.String wpPasswd;
-	/**wp同步类型:1:woocommerce,2:新版wp插件*/
-	@Excel(name = "wp同步类型:1:woocommerce,2:新版wp插件", width = 15)
-    @Schema(description = "wp同步类型:1:woocommerce,2:新版wp插件")
-    private java.lang.Integer wpSyncType;
-	/**是否是演示站点:1,是;2,不是*/
-	@Excel(name = "是否是演示站点:1,是;2,不是", width = 15)
-    @Schema(description = "是否是演示站点:1,是;2,不是")
-    private java.lang.Integer performFlag;
-	/**询盘分配方式*/
-	@Excel(name = "询盘分配方式", width = 15)
+
+    /**
+     * 询盘分配方式
+     */
+    @Excel(name = "询盘分配方式", width = 15)
     @Schema(description = "询盘分配方式")
     private java.lang.String enquiryDistributeType;
-	/**渠道商name*/
-	@Excel(name = "渠道商name", width = 15)
+    /**
+     * 渠道商name
+     */
+    @Excel(name = "渠道商name", width = 15)
     @Schema(description = "渠道商name")
     private java.lang.String channelProviderName;
-	/**渠道商id*/
-	@Excel(name = "渠道商id", width = 15)
+    /**
+     * 渠道商id
+     */
+    @Excel(name = "渠道商id", width = 15)
     @Schema(description = "渠道商id")
     private java.lang.String channelProviderId;
-	/**通过ADWEB发送询盘到指定邮箱*/
-	@Excel(name = "通过ADWEB发送询盘到指定邮箱", width = 15)
+    /**
+     * 通过ADWEB发送询盘到指定邮箱
+     */
+    @Excel(name = "通过ADWEB发送询盘到指定邮箱", width = 15)
     @Schema(description = "通过ADWEB发送询盘到指定邮箱")
     private java.lang.String enquiryEmailList;
-	/**公司名称*/
-	@Excel(name = "公司名称", width = 15)
+    /**
+     * 公司名称
+     */
+    @Excel(name = "公司名称", width = 15)
     @Schema(description = "公司名称")
     private java.lang.String companyName;
-	/**物料模块是否嵌入WordPress(1:是,0,不是)*/
-	@Excel(name = "物料模块是否嵌入WordPress(1:是,0,不是)", width = 15)
-    @Schema(description = "物料模块是否嵌入WordPress(1:是,0,不是)")
-    private java.lang.Integer wordpressSwitch;
-	/**购买链接*/
-	@Excel(name = "购买链接", width = 15)
+
+    /**
+     * 购买链接
+     */
+    @Excel(name = "购买链接", width = 15)
     @Schema(description = "购买链接")
     private java.lang.String buyLinks;
-	/**WordPress页面内容嵌入配置*/
-	@Excel(name = "WordPress页面内容嵌入配置", width = 15)
+    /**
+     * WordPress页面内容嵌入配置
+     */
+    @Excel(name = "WordPress页面内容嵌入配置", width = 15)
     @Schema(description = "WordPress页面内容嵌入配置")
     private java.lang.String wordpressSetting;
-	/**WordPress登录账户*/
-	@Excel(name = "WordPress登录账户", width = 15)
+    /**
+     * WordPress登录账户
+     */
+    @Excel(name = "WordPress登录账户", width = 15)
     @Schema(description = "WordPress登录账户")
     private java.lang.String wordpressName;
-	/**WordPress登录token*/
-	@Excel(name = "WordPress登录token", width = 15)
+    /**
+     * WordPress登录token
+     */
+    @Excel(name = "WordPress登录token", width = 15)
     @Schema(description = "WordPress登录token")
     private java.lang.String wordpressToken;
-	/**存放服务器的ip*/
-	@Excel(name = "存放服务器的ip", width = 15)
+    /**
+     * 存放服务器的ip
+     */
+    @Excel(name = "存放服务器的ip", width = 15)
     @Schema(description = "存放服务器的ip")
     private java.lang.String devServerIp;
-	/**prod环境的服务器ip*/
-	@Excel(name = "prod环境的服务器ip", width = 15)
+    /**
+     * prod环境的服务器ip
+     */
+    @Excel(name = "prod环境的服务器ip", width = 15)
     @Schema(description = "prod环境的服务器ip")
     private java.lang.String prodServerIp;
-	/**仅限制用户能不能看到,1为开,0为关*/
-	@Excel(name = "仅限制用户能不能看到,1为开,0为关", width = 15)
+    /**
+     * 仅限制用户能不能看到,1为开,0为关
+     */
+    @Excel(name = "仅限制用户能不能看到,1为开,0为关", width = 15)
     @Schema(description = "仅限制用户能不能看到,1为开,0为关")
     private java.lang.Integer seoJobStatus;
-	/**询盘发送邮箱方式*/
-	@Excel(name = "询盘发送邮箱方式", width = 15)
+    /**
+     * 询盘发送邮箱方式
+     */
+    @Excel(name = "询盘发送邮箱方式", width = 15)
     @Schema(description = "询盘发送邮箱方式")
     private java.lang.String enquirySendEmailType;
 

+ 1 - 1
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/site/service/impl/AdwebSiteServiceImpl.java

@@ -73,7 +73,7 @@ public class AdwebSiteServiceImpl extends ServiceImpl<AdwebSiteMapper, AdwebSite
                 AdwebSite adwebSite = list.get(0);
                 BeanUtils.copyProperties(adwebSite, config);
                 // 开启WP&未上线站点
-                if (adwebSite.getStatus() == NumConstant.TWO.intValue() && adwebSite.getWordpressSwitch() == NumConstant.ONE.intValue()) {
+                if (adwebSite.getStatus() == NumConstant.TWO.intValue()) {
                     String domainDev = adwebSite.getDomainDev();
                     domainDev = domainDev.replaceAll("https://", "").replaceAll("http://", "");
                     domainDev = "https://" + domainDev;