| | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.oying.modules.pc.product.domain.ProductAudit; |
| | | import com.oying.modules.pc.product.domain.dto.ProductAuditQueryCriteria; |
| | | import com.oying.modules.pc.product.view.ProductAuditView; |
| | | import com.oying.utils.PageResult; |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | |
| | | * @param page 分页参数 |
| | | * @return PageResult |
| | | */ |
| | | PageResult<ProductAudit> queryAll(ProductAuditQueryCriteria criteria, Page<Object> page); |
| | | PageResult<ProductAuditView> queryAll(ProductAuditQueryCriteria criteria, Page<Object> page); |
| | | |
| | | /** |
| | | * 查询所有数据不分页 |
| | |
| | | * @param criteria 条件参数 |
| | | * @return List<StoreRevisionDto> |
| | | */ |
| | | List<ProductAudit> queryAll(ProductAuditQueryCriteria criteria); |
| | | List<ProductAuditView> queryAll(ProductAuditQueryCriteria criteria); |
| | | |
| | | /** |
| | | * 商品ID查询修订数据, |
| | |
| | | ProductAudit getByProductId(Long productId); |
| | | |
| | | /** |
| | | * 是否有待审记录 |
| | | * |
| | | * @param productId 必须的参数,不能为null |
| | | * @return 查询到的结果 |
| | | */ |
| | | boolean hasPendingByStoreId(Long productId); |
| | | |
| | | /** |
| | | * 创建 |
| | | * |
| | | * @param resources / |