package cn.timer.api.dao.sbgjj; import java.util.List; 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); SbgjjAssoYjzd IndividualTotalsbgjj(String usernum,int qyid,String zymonth); }