You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
641 B
C#
27 lines
641 B
C#
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
|
|
{
|
|
/// <summary>
|
|
/// 获取客户信息
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
DataResult GetClientInfo();
|
|
|
|
/// <summary>
|
|
/// 编辑公司信息
|
|
/// </summary>
|
|
/// <param name="model"></param>
|
|
/// <returns></returns>
|
|
DataResult EditClientCompany(CompanyInput model);
|
|
/// <summary>
|
|
/// 提交审核
|
|
/// </summary>
|
|
/// <param name="id"></param>
|
|
/// <returns></returns>
|
|
DataResult SubmitCompany(string id);
|
|
} |