123456789101112131415161718 |
- package com.kmall.api.dao;
- import com.kmall.common.dao.BaseDao;
- import com.kmall.common.utils.pingan.dto.PinganPayOrderDto;
- import org.springframework.stereotype.Component;
- /**
- * Dao
- *
- * @author emato
- * @email admin@qhdswl.com
- * @date 2018-12-06 15:29:43
- */
- @Component
- public interface ApiPinganPayOrderMapper extends BaseDao<PinganPayOrderDto> {
- int updateByOutNo(PinganPayOrderDto pinganPayOrder);
- }
|