SbgjjAssoYjzdMapper.java 836 Bytes
Newer Older
yuquan.zhu committed
1
package cn.timer.api.dao.sbgjj;
2 3
import java.util.List;

yuquan.zhu committed
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
import org.springframework.stereotype.Repository;

import com.baomidou.mybatisplus.core.mapper.BaseMapper;

import cn.timer.api.bean.sbgjj.SbgjjAssoYjzd;
import cn.timer.api.dto.sbgjj.MonthlyCheckoutSheetDto;
import cn.timer.api.dto.sbgjj.MonthlyStatementDto;

/**
*  月结账单
* @author Tang 2019-12-09
*/
@Repository
public interface SbgjjAssoYjzdMapper extends BaseMapper<SbgjjAssoYjzd> {

	int insertsbgjjassoyjzd(SbgjjAssoYjzd sbgjjassoyjzd);
	
	int deletesbgjjassoyjzd(int usernum,int qyid,String zymonth,int cbryid);
	
	SbgjjAssoYjzd zcjsjginsurance(int usernum,int qyid,String zymonth);
	
	List<MonthlyCheckoutSheetDto> MonthlycheckoutsheetList(MonthlyStatementDto monthlystatementdto);
ilal committed
26 27
	
	SbgjjAssoYjzd IndividualTotalsbgjj(String usernum,int qyid,String zymonth);
yuquan.zhu committed
28 29

}