TakeOut.h
资源名称:SQLVC.rar [点击查看]
上传用户:biney012
上传日期:2022-05-09
资源大小:4592k
文件大小:1k
源码类别:
数据库系统
开发平台:
Visual C++
- // TakeOut.h: interface for the CTakeOut class.
- //
- //////////////////////////////////////////////////////////////////////
- #if !defined(AFX_TAKEOUT_H__727F1AE3_67F6_4286_BA42_DCEAFFAB438B__INCLUDED_)
- #define AFX_TAKEOUT_H__727F1AE3_67F6_4286_BA42_DCEAFFAB438B__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- class CTakeOut
- {
- private:
- CString Ttype;
- int Pid;
- float Pprice;
- int Pnum;
- int Cid;
- int Sid;
- CString EmpName;
- CString OptDate;
- public:
- CTakeOut();
- virtual ~CTakeOut();
- //设置和读取成员变量
- CString GetTtype();
- void SetTtype(CString cTtype);
- int GetPid();
- void SetPid(int iPid);
- float GetPprice();
- void SetPprice(float fPprice);
- int GetPnum();
- void SetPnum(int iPnum);
- int GetCid();
- void SetCid(int iCid);
- int GetSid();
- void SetSid(int iSid);
- CString GetEmpName();
- void SetEmpName(CString cEmpName);
- CString GetOptDate();
- void SetOptDate(CString cOptDate);
- //数据库操作
- int HaveClient(CString cCid); //判断表中是否存在指定的客户信息
- int HaveProduct(CString cPid); //判断表中是否存在指定的产品信息
- int HaveStore(CString cSid); //判断表中是否存在指定的仓库信息
- void sql_insert();
- };
- #endif // !defined(AFX_TAKEOUT_H__727F1AE3_67F6_4286_BA42_DCEAFFAB438B__INCLUDED_)