package com.changhong.epc.admin.mapper.centen.account; import com.changhong.epc.bean.admin.Account; import com.iemsoft.framework.cloud.mybatis.common.MybatisBaseMapper; import org.apache.ibatis.annotations.Param; import java.util.List; public interface AccountMapper extends MybatisBaseMapper { List selectByDataStart(); int updateState(@Param("account")Account account); Account selectOneAccount(@Param("orderCode") String orderCode); int repetitionAccount(@Param("account")Account account); Integer updateVoucherCode(@Param("voucherCode")String voucherCode,@Param("orderCode") String orderCode); }