Helius
2022-07-04 9ef3d48a2878cd76890fc1e1d78734e27afb8ac3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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);
}