待处理 我的数据
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
package com.cool.store.dto;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Author suzhuhong
|
||||
* @Date 2024/5/7 15:08
|
||||
* @Version 1.0
|
||||
*/
|
||||
@Data
|
||||
public class InvestmentCountDTO {
|
||||
|
||||
@ApiModelProperty("意向加盟数量")
|
||||
private Integer intendCount;
|
||||
@ApiModelProperty("邀约面谈数据")
|
||||
private Integer interviewCount;
|
||||
@ApiModelProperty("一审面试数据")
|
||||
private Integer firstInterviewCount;
|
||||
@ApiModelProperty("缴纳意向金数据")
|
||||
private Integer payStageCount;
|
||||
@ApiModelProperty("意向签约数据")
|
||||
private Integer signingCount;
|
||||
@ApiModelProperty("门店体验数量")
|
||||
private Integer storeExperienceCount;
|
||||
@ApiModelProperty("二审面试数据")
|
||||
private Integer secondInterviewCount;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
package com.cool.store.vo.desk;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Author suzhuhong
|
||||
* @Date 2024/5/7 10:48
|
||||
* @Version 1.0
|
||||
*/
|
||||
@Data
|
||||
public class PreparationCommonPendingVO {
|
||||
|
||||
@ApiModelProperty("门店名称")
|
||||
private String storeName;
|
||||
@ApiModelProperty("门店负责人名称")
|
||||
private String shopManagerUserName;
|
||||
@ApiModelProperty("招商经理名称")
|
||||
private String partnerName;
|
||||
@ApiModelProperty("手机号")
|
||||
private String partnerPhone;
|
||||
@ApiModelProperty("所属战区")
|
||||
private String regionNodeName;
|
||||
@ApiModelProperty("阶段状态")
|
||||
private Integer subStageStatus;
|
||||
@ApiModelProperty("线索ID")
|
||||
private Long lineId;
|
||||
@ApiModelProperty("店铺ID")
|
||||
private Long shopId;
|
||||
@ApiModelProperty("提交时间")
|
||||
private String submitTime;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user