Client.h
上传用户:biney012
上传日期:2022-05-09
资源大小:4592k
文件大小:1k
源码类别:

数据库系统

开发平台:

Visual C++

  1. // Client.h: interface for the CClient class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_CLIENT_H__C210C883_216F_4A4E_BB2F_F034570AA92F__INCLUDED_)
  5. #define AFX_CLIENT_H__C210C883_216F_4A4E_BB2F_F034570AA92F__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CClient  
  10. {
  11. private:
  12. int Cid;
  13. CString Cname;
  14. int Ctype;
  15. CString Contact;
  16. CString Address;
  17. CString Postcode;
  18. CString Phone;
  19. CString Fax;
  20. CString Memo;
  21. public:
  22. CClient();
  23. virtual ~CClient();
  24. //设置和读取成员变量值
  25. int GetCid();
  26. void SetCid(int iCid);
  27. CString GetCname();
  28. void SetCname(CString cCname);
  29. int GetCtype();
  30. void SetCtype(int iCtype);
  31. CString GetContact();
  32. void SetContact(CString cContact);
  33. CString GetAddress();
  34. void SetAddress(CString cAddress);
  35. CString GetPostcode();
  36. void SetPostcode(CString cPostcode);
  37. CString GetPhone();
  38. void SetPhone(CString cPhone);
  39. CString GetFax();
  40. void SetFax(CString cFax);
  41. CString GetMemo();
  42. void SetMemo(CString cMemo);
  43. //数据库操作
  44. int HaveName(CString cCname); //判断指定的客户名是否在数据库中
  45. void sql_insert();
  46. void sql_update(CString cCid);
  47. void sql_delete(CString cCid);
  48. //根据员工编号读取所有字段值
  49. void GetData(CString cCid);
  50. };
  51. #endif // !defined(AFX_CLIENT_H__C210C883_216F_4A4E_BB2F_F034570AA92F__INCLUDED_)