Compare commits
No commits in common. "ec18d20461a1903fe1afc096086c9f307cce68a5" and "d3ca1f9004d011f3ad9f02e60fe3fe3494704bca" have entirely different histories.
ec18d20461
...
d3ca1f9004
|
@ -1,56 +0,0 @@
|
||||||
/*
|
|
||||||
* @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;
|
|
||||||
}
|
|
|
@ -1,30 +0,0 @@
|
||||||
/*
|
|
||||||
* @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;
|
|
||||||
}
|
|
|
@ -1,30 +0,0 @@
|
||||||
/*
|
|
||||||
* @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;
|
|
||||||
|
|
||||||
}
|
|
Loading…
Reference in New Issue