保存进度!
This commit is contained in:
parent
dc3da1496d
commit
9a83d7ac9a
@ -1,3 +1,4 @@
|
|||||||
|
package com.cpic.xim.data;
|
||||||
/*
|
/*
|
||||||
* @Author: Kane
|
* @Author: Kane
|
||||||
* @Date: 2023-05-02 09:52:15
|
* @Date: 2023-05-02 09:52:15
|
||||||
|
@ -14,7 +14,60 @@ import com.fasterxml.jackson.annotation.JsonProperty;
|
|||||||
|
|
||||||
public class DepartmentArchievement
|
public class DepartmentArchievement
|
||||||
{
|
{
|
||||||
public DepartmentArchievement() {}
|
public DepartmentArchievement()
|
||||||
|
{
|
||||||
|
this.totalArchievement = 0;
|
||||||
|
this.mensualArchievementList = new Vector<>();
|
||||||
|
this.insuranceRenewalRate = "";
|
||||||
|
this.attachingRate = "";
|
||||||
|
}
|
||||||
|
|
||||||
|
public static DepartmentArchievement queryDepartmentArchievement( String departmentCode )
|
||||||
|
{
|
||||||
|
DepartmentArchievement archievement = new DepartmentArchievement();
|
||||||
|
|
||||||
|
return archievement;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getTotalArchievement()
|
||||||
|
{
|
||||||
|
return totalArchievement;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTotalArchievement( int totalArchievement )
|
||||||
|
{
|
||||||
|
this.totalArchievement = totalArchievement;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Vector<Integer> getMensualArchievementList()
|
||||||
|
{
|
||||||
|
return mensualArchievementList;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setMensualArchievementList( Vector<Integer> mensualArchievementList )
|
||||||
|
{
|
||||||
|
this.mensualArchievementList = mensualArchievementList;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getInsuranceRenewalRate()
|
||||||
|
{
|
||||||
|
return insuranceRenewalRate;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setInsuranceRenewalRate( String insuranceRenewalRate )
|
||||||
|
{
|
||||||
|
this.insuranceRenewalRate = insuranceRenewalRate;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getAttachingRate()
|
||||||
|
{
|
||||||
|
return attachingRate;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAttachingRate( String attachingRate )
|
||||||
|
{
|
||||||
|
this.attachingRate = attachingRate;
|
||||||
|
}
|
||||||
|
|
||||||
@JsonProperty( "total_archievement" )
|
@JsonProperty( "total_archievement" )
|
||||||
private int totalArchievement; // 总业绩
|
private int totalArchievement; // 总业绩
|
||||||
|
@ -1,17 +1,13 @@
|
|||||||
/*
|
/*
|
||||||
* @Author: Kane
|
* @Author: Kane
|
||||||
*
|
|
||||||
* @Date: 2023-04-30 11:11:34
|
* @Date: 2023-04-30 11:11:34
|
||||||
*
|
|
||||||
* @LastEditors: Kane
|
* @LastEditors: Kane
|
||||||
*
|
|
||||||
* @FilePath: /desktop_archievement_backend/src/main/java/com/cpic/xim/web/controllers/archievement/DepartmentArchievementQueryRequest.java
|
* @FilePath: /desktop_archievement_backend/src/main/java/com/cpic/xim/web/controllers/archievement/DepartmentArchievementQueryRequest.java
|
||||||
* DepartmentArchievementQueryRequest.java
|
* @Description: 部门业绩请求参数类
|
||||||
*
|
*
|
||||||
* @Description:
|
* Copyright (c) ${2022} by Kane, All Rights Reserved.
|
||||||
*
|
|
||||||
* Copyright (c) ${2022} by Kane, All Rights Reserved.
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package com.cpic.xim.web.controllers.archievement;
|
package com.cpic.xim.web.controllers.archievement;
|
||||||
|
|
||||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||||
|
@ -12,12 +12,13 @@ package com.cpic.xim.web.controllers.archievement;
|
|||||||
|
|
||||||
import java.util.Vector;
|
import java.util.Vector;
|
||||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||||
|
import com.cpic.xim.web.controllers.QueryResult;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 查询部门业绩返回结果。
|
* 查询部门业绩返回结果。
|
||||||
* MensualArchievementList 每月业绩,要保证数据是按照月份排序。
|
* MensualArchievementList 每月业绩,要保证数据是按照月份排序。
|
||||||
*/
|
*/
|
||||||
public class DepartmentArchievementQueryResult
|
public class DepartmentArchievementQueryResult extends QueryResult
|
||||||
{
|
{
|
||||||
DepartmentArchievementQueryResult()
|
DepartmentArchievementQueryResult()
|
||||||
{
|
{
|
||||||
@ -112,32 +113,6 @@ public class DepartmentArchievementQueryResult
|
|||||||
this.backwardList = backwardList;
|
this.backwardList = backwardList;
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isSuccess()
|
|
||||||
{
|
|
||||||
return success;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSuccess( boolean success )
|
|
||||||
{
|
|
||||||
this.success = success;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getMessage()
|
|
||||||
{
|
|
||||||
return message;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setMessage( String message )
|
|
||||||
{
|
|
||||||
this.message = message;
|
|
||||||
}
|
|
||||||
|
|
||||||
@JsonProperty( "success" )
|
|
||||||
private boolean success;
|
|
||||||
|
|
||||||
@JsonProperty( "message" )
|
|
||||||
private String message;
|
|
||||||
|
|
||||||
@JsonProperty( "total_archievement" )
|
@JsonProperty( "total_archievement" )
|
||||||
private int totalArchievement; // 总业绩
|
private int totalArchievement; // 总业绩
|
||||||
|
|
||||||
@ -160,6 +135,4 @@ public class DepartmentArchievementQueryResult
|
|||||||
|
|
||||||
@JsonProperty( "backward_list" )
|
@JsonProperty( "backward_list" )
|
||||||
private Vector<String> backwardList; // 消七灭六坐席
|
private Vector<String> backwardList; // 消七灭六坐席
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user