| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- package com.ydtech.modules.fnc.dao;
- import com.ydtech.modules.fnc.model.FncVoucher;
- import com.ydtech.modules.fnc.model.FncVoucherExample;
- import com.ydtech.modules.fnc.model.FncVoucherKey;
- import com.ydtech.modules.fnc.vo.FncVoucherReq;
- import com.ydtech.modules.fnc.vo.FncVoucherVo;
- import org.apache.ibatis.annotations.Param;
- import org.springframework.stereotype.Repository;
- import java.util.List;
- @Repository
- public interface FncVoucherMapper {
- /**
- * description:countByExample
- *
- * @author: gws
- * @date: 2021-12-15
- * @since: 1.0
- */
- long countByExample(FncVoucherExample example);
- /**
- * description:deleteByExample
- *
- * @author: gws
- * @date: 2021-12-15
- * @since: 1.0
- */
- int deleteByExample(FncVoucherExample example);
- /**
- * description:deleteByPrimaryKey
- *
- * @author: gws
- * @date: 2021-12-15
- * @since: 1.0
- */
- int deleteByPrimaryKey(FncVoucherKey key);
- /**
- * description:insert
- *
- * @author: gws
- * @date: 2021-12-15
- * @since: 1.0
- */
- int insert(FncVoucher record);
- /**
- * description:insertSelective
- *
- * @author: gws
- * @date: 2021-12-15
- * @since: 1.0
- */
- int insertSelective(FncVoucher record);
- /**
- * description:selectByExample
- *
- * @author: gws
- * @date: 2021-12-15
- * @since: 1.0
- */
- List<FncVoucher> selectByExample(FncVoucherExample example);
- /**
- * description:selectByPrimaryKey
- *
- * @author: gws
- * @date: 2021-12-15
- * @since: 1.0
- */
- FncVoucher selectByPrimaryKey(FncVoucherKey key);
- /**
- * description:updateByExampleSelective
- *
- * @author: gws
- * @date: 2021-12-15
- * @since: 1.0
- */
- int updateByExampleSelective(@Param("record") FncVoucher record, @Param("example") FncVoucherExample example);
- /**
- * description:updateByExample
- *
- * @author: gws
- * @date: 2021-12-15
- * @since: 1.0
- */
- int updateByExample(@Param("record") FncVoucher record, @Param("example") FncVoucherExample example);
- /**
- * description:updateByPrimaryKeySelective
- *
- * @author: gws
- * @date: 2021-12-15
- * @since: 1.0
- */
- int updateByPrimaryKeySelective(FncVoucher record);
- /**
- * description:updateByPrimaryKey
- *
- * @author: gws
- * @date: 2021-12-15
- * @since: 1.0
- */
- int updateByPrimaryKey(FncVoucher record);
- List<FncVoucher> queryVoucherByCodition(FncVoucherReq codition);
- List<FncVoucherVo> exportVoucherByCodition(FncVoucherReq codition);
- List<FncVoucher> queryVoucher(FncVoucherReq codition);
- }
|