服务端的TigerApi 框架,基于.NET6 2024 版本
Rodney Chen
2024-08-02 d34d9c35ba844da8b805993bd4c69b0253694fc0
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);
    }
}