服务端的TigerApi 框架,基于.NET6 2024 版本
Ben Lin
2024-06-11 76ea6b9b4663f09f1b19fb1b09d876874c76defd
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);
    }
}