- Visual C++源码
- Visual Basic源码
- C++ Builder源码
- Java源码
- Delphi源码
- C/C++源码
- PHP源码
- Perl源码
- Python源码
- Asm源码
- Pascal源码
- Borland C++源码
- Others源码
- SQL源码
- VBScript源码
- JavaScript源码
- ASP/ASPX源码
- C#源码
- Flash/ActionScript源码
- matlab源码
- PowerBuilder源码
- LabView源码
- Flex源码
- MathCAD源码
- VBA源码
- IDL源码
- Lisp/Scheme源码
- VHDL源码
- Objective-C源码
- Fortran源码
- tcl/tk源码
- QT源码
TakeOut.h
资源名称:final.rar [点击查看]
上传用户:fangwenmm
上传日期:2014-06-18
资源大小:6955k
文件大小: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_)