Commit 43599d4f authored by 蔡镇泽's avatar 蔡镇泽

费用结算

parent 22ef61f1
...@@ -28,6 +28,7 @@ public interface SrvTaskMapper extends BaseMapper<ChSrvTask> { ...@@ -28,6 +28,7 @@ public interface SrvTaskMapper extends BaseMapper<ChSrvTask> {
" t7.item_id " +//服务项目id " t7.item_id " +//服务项目id
" t7.item_times " +//服务频次 " t7.item_times " +//服务频次
" t7.planning_frequency " +//计划频次 " t7.planning_frequency " +//计划频次
" t7.planning_frequency_type " +//计划频次类型
" t8.srv_level_id " +//服务等级id " t8.srv_level_id " +//服务等级id
"FROM " + "FROM " +
" ch_srv_task t1 " + " ch_srv_task t1 " +
......
...@@ -5,8 +5,6 @@ import com.baomidou.mybatisplus.extension.service.IService; ...@@ -5,8 +5,6 @@ import com.baomidou.mybatisplus.extension.service.IService;
import com.hungraim.ltc.pojo.entity.account.ChDisabAccounts; import com.hungraim.ltc.pojo.entity.account.ChDisabAccounts;
import com.hungraim.ltc.pojo.vo.account.*; import com.hungraim.ltc.pojo.vo.account.*;
import java.util.List;
public interface AccountService extends IService<ChDisabAccounts> { public interface AccountService extends IService<ChDisabAccounts> {
/** /**
...@@ -18,5 +16,5 @@ public interface AccountService extends IService<ChDisabAccounts> { ...@@ -18,5 +16,5 @@ public interface AccountService extends IService<ChDisabAccounts> {
AccountOperVo getSrvOrganDetail(Long accountsId); AccountOperVo getSrvOrganDetail(Long accountsId);
List<ExpenseSettlementVo> expenseSettlement(ExpenseSettlementReq req); ExpenseVo expenseSettlement(ExpenseSettlementReq req);
} }
...@@ -68,6 +68,10 @@ public class ExpenseSettlementInfoBo { ...@@ -68,6 +68,10 @@ public class ExpenseSettlementInfoBo {
* 计划频次 * 计划频次
*/ */
private Integer planningFrequency; private Integer planningFrequency;
/**
* 计划频次类型
*/
private Integer planningFrequencyType;
/** /**
* 服务等级id * 服务等级id
......
...@@ -100,6 +100,6 @@ public class ExpenseSettlementVo { ...@@ -100,6 +100,6 @@ public class ExpenseSettlementVo {
/** /**
* 合计 * 合计
*/ */
private String total; private ExpenseSettlementTotalVo total;
} }
package com.hungraim.ltc.pojo.vo.account;
import lombok.Data;
import java.util.List;
@Data
public class ExpenseVo {
/**
* 费用结算
*/
private List<ExpenseSettlementVo> expenseSettlements;
/**
* 合计
*/
private ExpenseSettlementTotalVo total;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment