OrgDTO.java 2.92 KB
Newer Older
吴泽佳's avatar
吴泽佳 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
package com.tanpu.feo.feojob.dto;

import com.tanpu.feo.feojob.web.dto.PageHelperDTO;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.Builder;
import java.util.Date;
import io.swagger.annotations.ApiModelProperty;

/**
 * DTO
 *
 * @author zejia zj wu 2021年05月18日
 * @version 1.0
 */
@Data
@AllArgsConstructor
@NoArgsConstructor
@Builder
public class OrgDTO extends PageHelperDTO {

	private static final long serialVersionUID = 1L;
	/** 机构唯一识别码 */
	@ApiModelProperty(value = "机构唯一识别码")
	private String orgCode;
	/** 机构名称 */
	@ApiModelProperty(value = "机构名称")
	private String orgName;
	/** 自动通过认证 */
	@ApiModelProperty(value = "自动通过认证")
	private Integer automaticProcessing;
	/** 是否购买了精选:0:否 1:是 */
	@ApiModelProperty(value = "是否购买了精选:0:否 1:是")
	private String isbuySelection;
	/** 是否购买了今日聚焦 0:否 1:是 */
	@ApiModelProperty(value = "是否购买了今日聚焦 0:否 1:是")
	private String isbuyTodayfocus;
	/** 推送标签 */
	@ApiModelProperty(value = "推送标签")
	private String arPushLabels;
	/** 功能码 */
	@ApiModelProperty(value = "功能码")
	private String funCodes;
	/** 个人主页定制 */
	@ApiModelProperty(value = "个人主页定制")
	private String homepageCustom;
	/** 获客内容设置 */
	@ApiModelProperty(value = "获客内容设置")
	private String contentSet;
	/** 名片模板 */
	@ApiModelProperty(value = "名片模板")
	private Integer cardTemplate;
	/** 合格投资者认证开关 */
	@ApiModelProperty(value = "合格投资者认证开关")
	private Integer accreditedInvestorSwitch;
	/** 朋友圈助手开关 */
	@ApiModelProperty(value = "朋友圈助手开关")
	private Integer friendToolsSwitch;
	/** 机构主体类别 */
	@ApiModelProperty(value = "机构主体类别")
	private String tagCategoryId;
	/** 阿里云短信签名 */
	@ApiModelProperty(value = "阿里云短信签名")
	private String aliyunSignName;
	/** 阿里云消息模版ID */
	@ApiModelProperty(value = "阿里云消息模版ID")
	private String aliyunTempcode;
	/** 阿里云AccessKeyId */
	@ApiModelProperty(value = "阿里云AccessKeyId")
	private String aliyunAccessKeyId;
	/** 阿里云AccessKeySecret */
	@ApiModelProperty(value = "阿里云AccessKeySecret")
	private String aliyunAccessKeySecret;
	/** appId标识 */
	@ApiModelProperty(value = "appId标识")
	private String appId;
	/** AppKey */
	@ApiModelProperty(value = "AppKey")
	private String appKey;
	/** SecretKey */
	@ApiModelProperty(value = "SecretKey")
	private String secretKey;
	/** 服务到期时间 */
	@ApiModelProperty(value = "服务到期时间")
	private Date timeValidity;
	/**  */
	@ApiModelProperty(value = "")
	private Integer isCheckSubject;
	/**  */
	@ApiModelProperty(value = "")
	private Integer appType;
	/**  */
	@ApiModelProperty(value = "")
	private String agentId;
}