| 123456789101112131415161718192021 |
- package com.goafanti.voucher.service;
- import com.goafanti.common.model.JtVoucher;
- import com.goafanti.common.model.JtVoucherDetail;
- import com.goafanti.core.mybatis.page.Pagination;
- import com.goafanti.voucher.bo.JtVoucherDetailListBo;
- public interface VoucherDetailService {
- int saveVoucherDetail(JtVoucherDetail voucher);
-
- int updateVoucherDetail(JtVoucherDetail voucher);
-
- int delectVoucherDetail(String id);
-
- JtVoucher selectVoucherDetail(String id);
-
- Pagination<JtVoucherDetailListBo> selectVoucherDetailList(String name,Integer limitUse,String userMobile,Integer source,Integer pageNo,Integer pageSize);
-
-
- }
|