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

数据库系统

开发平台:

Visual C++

  1. // TakeOut.h: interface for the CTakeOut class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_TAKEOUT_H__727F1AE3_67F6_4286_BA42_DCEAFFAB438B__INCLUDED_)
  5. #define AFX_TAKEOUT_H__727F1AE3_67F6_4286_BA42_DCEAFFAB438B__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CTakeOut  
  10. {
  11. private:
  12. CString Ttype;
  13. int Pid;
  14. float Pprice;
  15. int Pnum;
  16. int Cid;
  17. int Sid;
  18. CString EmpName;
  19. CString OptDate;
  20. public:
  21. CTakeOut();
  22. virtual ~CTakeOut();
  23. //设置和读取成员变量
  24. CString GetTtype();
  25. void SetTtype(CString cTtype);
  26. int GetPid();
  27. void SetPid(int iPid);
  28. float GetPprice();
  29. void SetPprice(float fPprice);
  30. int GetPnum();
  31. void SetPnum(int iPnum);
  32. int GetCid();
  33. void SetCid(int iCid);
  34. int GetSid();
  35. void SetSid(int iSid);
  36. CString GetEmpName();
  37. void SetEmpName(CString cEmpName);
  38. CString GetOptDate();
  39. void SetOptDate(CString cOptDate);
  40. //数据库操作
  41. int HaveClient(CString cCid);  //判断表中是否存在指定的客户信息
  42. int HaveProduct(CString cPid);  //判断表中是否存在指定的产品信息
  43. int HaveStore(CString cSid);  //判断表中是否存在指定的仓库信息
  44. void sql_insert();
  45. };
  46. #endif // !defined(AFX_TAKEOUT_H__727F1AE3_67F6_4286_BA42_DCEAFFAB438B__INCLUDED_)