服务端的TigerApi 框架,基于.NET6 2024 版本
Cloud Zhang
2024-05-22 538119e2ab781b49e106de34a65f8a102092082e
Tiger.IBusiness/WMS/MengQi/ICustomer.cs
@@ -12,6 +12,8 @@
    public interface ICustomer
    {
        public Task<ApiAction<List<Customer>>> GetCustomerInfo();
        public Task<Result> SaveImportCustomerInfo(DataTable dt);
        public Task<ApiAction> SaveImportCustomerInfo(List<Customer> list);
        public Task<ApiAction<PageAble<Customer>>> GetCustomers(PageAble<Customer> pageList);
        public Task<ApiAction> SaveCustomer(Customer customer);
    }
}