对比新文件 |
| | |
| | | package com.gk.firework.Service; |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.gk.firework.Domain.StandardProductLeger; |
| | | import com.gk.firework.Domain.UserInfo; |
| | | |
| | | import java.util.Map; |
| | | |
| | | public interface StandardProductLegerService extends IService<StandardProductLeger> { |
| | | |
| | | |
| | | IPage selectPage(Page<StandardProductLeger> page, Map<String, Object> filter, UserInfo user); |
| | | |
| | | void addProductLeger(StandardProductLeger standardProductLeger, UserInfo user); |
| | | |
| | | void modProductLeger(StandardProductLeger standardProductLeger, UserInfo user); |
| | | |
| | | void delProductLeger(Long id, UserInfo user); |
| | | } |