StoreIn.h
资源名称:SQLVC.rar [点击查看]
上传用户:biney012
上传日期:2022-05-09
资源大小:4592k
文件大小:1k
源码类别:
数据库系统
开发平台:
Visual C++
- // StoreIn.h: interface for the StoreIn class.
- //
- //////////////////////////////////////////////////////////////////////
- #if !defined(AFX_STOREIN_H__A1F30A4D_0D4F_46B0_83EE_2CAB950AA89C__INCLUDED_)
- #define AFX_STOREIN_H__A1F30A4D_0D4F_46B0_83EE_2CAB950AA89C__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- class CStoreIn
- {
- private:
- CString SiType;
- int Pid;
- CString MakeDate;
- float Pprice;
- int Pnum;
- int Cid;
- int Sid;
- CString EmpName;
- CString OptDate;
- public:
- CStoreIn();
- virtual ~CStoreIn();
- CString GetSiType();
- void SetSiType(CString cSiType);
- int GetPid();
- void SetPid(int iPid);
- CString GetMakeDate();
- void SetMakeDate(CString cMakeDate);
- 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_STOREIN_H__A1F30A4D_0D4F_46B0_83EE_2CAB950AA89C__INCLUDED_)