package com.xcong.farmer.cms.modules.system.service;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.xcong.farmer.cms.common.response.Result;
|
import com.xcong.farmer.cms.modules.system.dto.AdminAddCompanyDto;
|
import com.xcong.farmer.cms.modules.system.dto.AdminBelongDto;
|
import com.xcong.farmer.cms.modules.system.dto.AdminDeleteDto;
|
import com.xcong.farmer.cms.modules.system.dto.AdminUpdateCompanyDto;
|
import com.xcong.farmer.cms.modules.system.entity.CompanyEntity;
|
|
public interface ICompanyService extends IService<CompanyEntity> {
|
|
Result getBelongInPage(AdminBelongDto adminBelongDto);
|
|
Result addBelong(AdminAddCompanyDto adminAddCompanyDto);
|
|
Result seeBelongInfo(Long id);
|
|
Result updateBelong(AdminUpdateCompanyDto adminUpdateCompanyDto);
|
|
Result getBelongInList();
|
|
Result delObjs(AdminDeleteDto adminDeleteDto);
|
}
|