保存进度!

This commit is contained in:
unknown 2023-06-04 16:01:05 +08:00
parent 43ebc2babb
commit 425b7be1a7
3 changed files with 116 additions and 0 deletions

View File

@ -0,0 +1,56 @@
/*
* @Author: Kane
* @Date: 2023-06-03 20:02:28
* @LastEditors: Kane
* @FilePath: /desktop_archievement_backend/src/main/java/com/cpic/xim/web/controllers/archievement/RankingList/CallerRanking.java
* @Description:
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
*/
package com.cpic.xim.web.controllers.archievement.RankingList;
import com.fasterxml.jackson.annotation.JsonProperty;
public class CallerRanking
{
public CallerRanking() {}
public int getIndex()
{
return index;
}
public void setIndex( int index )
{
this.index = index;
}
public String getCallerName()
{
return callerName;
}
public void setCallerName( String callerName )
{
this.callerName = callerName;
}
public String getAppraiseValue()
{
return appraiseValue;
}
public void setAppraiseValue( String appraiseValue )
{
this.appraiseValue = appraiseValue;
}
@JsonProperty("index")
private int index;
@JsonProperty("callerName")
private String callerName;
@JsonProperty("appraiseValue")
private String appraiseValue;
}

View File

@ -0,0 +1,30 @@
/*
* @Author: Kane
* @Date: 2023-06-03 19:56:03
* @LastEditors: Kane
* @FilePath: /desktop_archievement_backend/src/main/java/com/cpic/xim/web/controllers/archievement/RankingList/RankingListRequest.java
* @Description:
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
*/
package com.cpic.xim.web.controllers.archievement.RankingList;
import com.fasterxml.jackson.annotation.JsonProperty;
public class RankingListRequest
{
public RankingListRequest() {}
public String getDepartmentCode()
{
return departmentCode;
}
public void setDepartmentCode( String departmentCode )
{
this.departmentCode = departmentCode;
}
@JsonProperty("departmentCode")
private String departmentCode;
}

View File

@ -0,0 +1,30 @@
/*
* @Author: Kane
* @Date: 2023-06-03 20:18:46
* @LastEditors: Kane
* @FilePath: /desktop_archievement_backend/src/main/java/com/cpic/xim/web/controllers/archievement/RankingList/RankingListResponse.java
* @Description:
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
*/
package com.cpic.xim.web.controllers.archievement.RankingList;
import java.util.Vector;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.cpic.xim.web.controllers.QueryResult;
public class RankingListResponse extends QueryResult
{
public RankingListResponse() { super(); }
private String year;
private String month;
// 车非融合率排行
private Vector<CallerRanking> attachingRateRankingList;
// 续保率排行
private Vector<CallerRanking> renewalRateRankingList;
}