Commit 0bde327b by 王军业

【】

1 parent b8432cbe
package com.vion.financial.service;
import com.vion.financial.entity.Customer;
public interface CustomerService {
public Object addCustomer(Customer customer);
public Object queryCustomer();
public Object updateCustomer(Customer customer);
public Object deleteCustomer(int n);
}
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!