| | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.oying.modules.pc.store.domain.StoreQualification; |
| | | import com.oying.modules.pc.store.domain.dto.StoreQualificationQueryCriteria; |
| | | import com.oying.modules.pc.store.domain.dto.StoreQualificationUpdateRequest; |
| | | import com.oying.utils.PageResult; |
| | | |
| | | /** |
| | |
| | | List<StoreQualification> queryAll(StoreQualificationQueryCriteria criteria); |
| | | |
| | | /** |
| | | * 查询 |
| | | * @param ids 条件参数 |
| | | * @return List<StoreQualification> |
| | | */ |
| | | List<StoreQualification> queryBatchIds(List<Long> ids); |
| | | |
| | | /** |
| | | * 查询 |
| | | * @param storeId 条件参数 |
| | | * @return List<StoreQualification> |
| | | */ |
| | | List<StoreQualification> queryByStoreId(Long storeId); |
| | | |
| | | /** |
| | | * 创建 |
| | | * @param resources / |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 编辑 |
| | | * @param resources / |
| | | * @param request / |
| | | */ |
| | | void update(StoreQualification resources); |
| | | void update(StoreQualificationUpdateRequest request); |
| | | |
| | | /** |
| | | * 编辑 |
| | | * @param requests / |
| | | */ |
| | | void batchUpdate(List<StoreQualificationUpdateRequest> requests); |
| | | |
| | | /** |
| | | * 多选删除 |