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