|
@@ -0,0 +1,134 @@
|
|
|
+package com.ym.mec.biz.dal.vo;
|
|
|
+
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
+import com.ym.mec.common.page.PageInfo;
|
|
|
+import io.swagger.annotations.ApiModel;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+@ApiModel(value = "代理商人分润")
|
|
|
+public class ProxyDividendVo implements Serializable {
|
|
|
+ @ApiModelProperty(value = "意向机构")
|
|
|
+ private Integer tenantAgency;
|
|
|
+ @ApiModelProperty(value = "入驻机构")
|
|
|
+ private Integer preTenant;
|
|
|
+ @ApiModelProperty(value = "团练宝销售数")
|
|
|
+ private Integer memberCount;
|
|
|
+ @ApiModelProperty(value = "分页-分润数据")
|
|
|
+ private PageInfo<ProxyDividendInfoVo> pageData;
|
|
|
+
|
|
|
+ @ApiModel(value = "代理商人分润信息")
|
|
|
+ public static class ProxyDividendInfoVo {
|
|
|
+ @ApiModelProperty(value = "代理商id")
|
|
|
+ private Integer proxyId;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "代理商名称")
|
|
|
+ private String proxyName;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "机构id")
|
|
|
+ private Integer tenantId;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "机构名称")
|
|
|
+ private String tenantName;
|
|
|
+
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
+ @ApiModelProperty(value = "激活时间")
|
|
|
+ private Date activeDate;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "激活数量")
|
|
|
+ private Integer activeCount;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "推荐人")
|
|
|
+ private Integer recommenderName;
|
|
|
+
|
|
|
+ public Integer getProxyId() {
|
|
|
+ return proxyId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProxyId(Integer proxyId) {
|
|
|
+ this.proxyId = proxyId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getProxyName() {
|
|
|
+ return proxyName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProxyName(String proxyName) {
|
|
|
+ this.proxyName = proxyName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getTenantId() {
|
|
|
+ return tenantId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTenantId(Integer tenantId) {
|
|
|
+ this.tenantId = tenantId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getTenantName() {
|
|
|
+ return tenantName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTenantName(String tenantName) {
|
|
|
+ this.tenantName = tenantName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Date getActiveDate() {
|
|
|
+ return activeDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setActiveDate(Date activeDate) {
|
|
|
+ this.activeDate = activeDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getActiveCount() {
|
|
|
+ return activeCount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setActiveCount(Integer activeCount) {
|
|
|
+ this.activeCount = activeCount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getRecommenderName() {
|
|
|
+ return recommenderName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRecommenderName(Integer recommenderName) {
|
|
|
+ this.recommenderName = recommenderName;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getTenantAgency() {
|
|
|
+ return tenantAgency;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTenantAgency(Integer tenantAgency) {
|
|
|
+ this.tenantAgency = tenantAgency;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getPreTenant() {
|
|
|
+ return preTenant;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPreTenant(Integer preTenant) {
|
|
|
+ this.preTenant = preTenant;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getMemberCount() {
|
|
|
+ return memberCount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMemberCount(Integer memberCount) {
|
|
|
+ this.memberCount = memberCount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public PageInfo<ProxyDividendInfoVo> getPageData() {
|
|
|
+ return pageData;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPageData(PageInfo<ProxyDividendInfoVo> pageData) {
|
|
|
+ this.pageData = pageData;
|
|
|
+ }
|
|
|
+}
|