| 对比新文件 |
| | |
| | | package com.doumee.service.business; |
| | | |
| | | import com.doumee.core.model.PageData; |
| | | import com.doumee.core.model.PageWrap; |
| | | import com.doumee.dao.business.model.OrderLog; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 璁㈠崟鎿嶄綔鏃ュ織Service瀹氫箟 |
| | | * @author rk |
| | | * @date 2026/04/13 |
| | | */ |
| | | public interface OrderLogService { |
| | | |
| | | Integer create(OrderLog orderLog); |
| | | |
| | | void deleteById(Integer id); |
| | | |
| | | void delete(OrderLog orderLog); |
| | | |
| | | void deleteByIdInBatch(List<Integer> ids); |
| | | |
| | | void updateById(OrderLog orderLog); |
| | | |
| | | void updateByIdInBatch(List<OrderLog> orderLogs); |
| | | |
| | | OrderLog findById(Integer id); |
| | | |
| | | OrderLog findOne(OrderLog orderLog); |
| | | |
| | | List<OrderLog> findList(OrderLog orderLog); |
| | | |
| | | PageData<OrderLog> findPage(PageWrap<OrderLog> pageWrap); |
| | | |
| | | long count(OrderLog orderLog); |
| | | } |