using DS.Module.Core; using DS.WMS.Core.System.Dtos; using DS.WMS.Core.System.Entity; namespace DS.WMS.Core.System.Interface; public interface ICompanyService { /// /// 获取客户信息 /// /// DataResult GetClientInfo(); /// /// 编辑公司信息 /// /// /// DataResult EditClientCompany(CompanyInput model); /// /// 提交审核 /// /// /// DataResult SubmitCompany(string id); }