shiyunteng
10 天以前 fb9fca375c78c5b79acf6db990357816f86100fb
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.by4cloud.platformx.business.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.by4cloud.platformx.business.dto.ContractPaymentScheduleProcessAddDTO;
import com.by4cloud.platformx.business.entity.ContractPaymentScheduleProcess;
import com.by4cloud.platformx.common.core.util.R;
 
public interface ContractPaymentScheduleProcessService extends IService<ContractPaymentScheduleProcess> {
 
    R add(ContractPaymentScheduleProcessAddDTO addDTO);
 
    R selectScheduleProcess(Long id);
}