| | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import com.yeshi.fanli.dao.BaseMapper; |
| | | import com.yeshi.fanli.entity.money.TeamEincomeRecord; |
| | | |
| | | public interface TeamEincomeRecordMapper extends BaseMapper<TeamEincomeRecord> { |
| | | |
| | | TeamEincomeRecord selectByUidAndPreRecieveTimeAndType(Long uid, Date preRecieveTime, int type); |
| | | |
| | | TeamEincomeRecord selectByPrimaryKeyForUpdate(Long id); |
| | | TeamEincomeRecord selectByUidAndPreRecieveTimeAndType(@Param("uid") Long uid, |
| | | @Param("preRecieveTime") Date preRecieveTime, @Param("type") int type); |
| | | |
| | | List<TeamEincomeRecord> listByUidAndPreRecieveTimeAndState(Long uid, Date preRecieveTime, int state); |
| | | TeamEincomeRecord selectByPrimaryKeyForUpdate(Long id); |
| | | |
| | | List<TeamEincomeRecord> listByUidAndPreRecieveTimeAndState(@Param("uid") Long uid, |
| | | @Param("preRecieveTime") Date preRecieveTime, @Param("state") int state); |
| | | } |