?? salaryitem.h
字號:
// SalaryItem.h: interface for the CSalaryItem class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_SALARYITEM_H__B9A03139_C589_4FAE_8C8A_EF6D78886043__INCLUDED_)
#define AFX_SALARYITEM_H__B9A03139_C589_4FAE_8C8A_EF6D78886043__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CSalaryItem
{
public:
CSalaryItem();
virtual ~CSalaryItem();
public:
long ItemId;
CString ItemName;
int ItemType;
int ItemSum;
CString Formula;
int IsVisible;
int Operation;
public:
//數(shù)據(jù)庫操作
void sql_insert();
void sql_update(CString cTId);
void sql_delete(CString cTId);
//讀取所有字段值
void GetData(CString cTId);
//判斷是否已經(jīng)存在此工資項(xiàng)目名稱
bool HaveRecord(CString cItemName);
};
#endif // !defined(AFX_SALARYITEM_H__B9A03139_C589_4FAE_8C8A_EF6D78886043__INCLUDED_)
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -