|
package com.nq.pojo;
|
|
import lombok.Data;
|
|
import java.beans.ConstructorProperties;
|
|
@Data
|
public class SiteInfo {
|
private Integer id;
|
private String siteName;
|
private String siteHost;
|
private String siteKeywords;
|
private String siteDescription;
|
private String siteLogo;
|
private String siteLogoSm;
|
|
private String siteQq;
|
|
private String sitePhone;
|
|
private String siteAndroidImg;
|
|
private String siteAndroidUrl;
|
|
private String siteIosImg;
|
|
private String siteIosUrl;
|
private String siteEmailFrom;
|
private String siteEmailTo;
|
private String siteLanguage;
|
private String siteVersionInfo;
|
private String siteIntro;
|
private String riskNotice;
|
private String companyInfo;
|
private String certImg1;
|
private String certImg2;
|
private String regAgree;
|
private String tradeAgree;
|
private String tradeAgreeText;
|
private String siteColor;
|
private String regAgreeText;
|
/*在线客服*/
|
private String onlineService;
|
/*默认代理编号*/
|
private String agentCode;
|
|
/*融资融券标题*/
|
private String tradeAgreeTitle;
|
/*是否验证短信开关:1、验证,0、不验证*/
|
private Boolean smsDisplay;
|
|
private String rechargeUrl;
|
|
public SiteInfo() {
|
}
|
|
public SiteInfo(Integer id, String siteName, String siteHost, String siteKeywords, String siteDescription, String siteLogo, String siteLogoSm, String siteQq, String sitePhone, String siteAndroidImg, String siteAndroidUrl, String siteIosImg, String siteIosUrl, String siteEmailFrom, String siteEmailTo, String siteLanguage, String siteVersionInfo, String siteIntro, String riskNotice, String companyInfo, String certImg1, String certImg2, String regAgree, String tradeAgree, String tradeAgreeText, String siteColor, String regAgreeText, String onlineService, String agentCode, String tradeAgreeTitle, Boolean smsDisplay, String rechargeUrl) {
|
this.id = id;
|
this.siteName = siteName;
|
this.siteHost = siteHost;
|
this.siteKeywords = siteKeywords;
|
this.siteDescription = siteDescription;
|
this.siteLogo = siteLogo;
|
this.siteLogoSm = siteLogoSm;
|
this.siteQq = siteQq;
|
this.sitePhone = sitePhone;
|
this.siteAndroidImg = siteAndroidImg;
|
this.siteAndroidUrl = siteAndroidUrl;
|
this.siteIosImg = siteIosImg;
|
this.siteIosUrl = siteIosUrl;
|
this.siteEmailFrom = siteEmailFrom;
|
this.siteEmailTo = siteEmailTo;
|
this.siteLanguage = siteLanguage;
|
this.siteVersionInfo = siteVersionInfo;
|
this.siteIntro = siteIntro;
|
this.riskNotice = riskNotice;
|
this.companyInfo = companyInfo;
|
this.certImg1 = certImg1;
|
this.certImg2 = certImg2;
|
this.regAgree = regAgree;
|
this.tradeAgree = tradeAgree;
|
this.tradeAgreeText = tradeAgreeText;
|
this.siteColor = siteColor;
|
this.regAgreeText = regAgreeText;
|
this.onlineService = onlineService;
|
this.agentCode = agentCode;
|
this.tradeAgreeTitle = tradeAgreeTitle;
|
this.smsDisplay = smsDisplay;
|
this.rechargeUrl = rechargeUrl;
|
}
|
}
|