AddUserDao介面

weixin_34148340發表於2018-10-15

package com.model.dao;

import java.sql.SQLException;

import com.model.bean.UserInfo;

public interface AddUserDao {

//儲存使用者資訊
public void saveUser(UserInfo user) throws  Exception;

}

相關文章