?? taxrate.h
字號:
// TaxRate.h: interface for the CTaxRate class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_TAXRATE_H__C69CEA8F_2A58_46BB_BF39_44B3E874F8CC__INCLUDED_)
#define AFX_TAXRATE_H__C69CEA8F_2A58_46BB_BF39_44B3E874F8CC__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CTaxRate
{
public:
CTaxRate();
virtual ~CTaxRate();
public:
long Id;
int LowerLimit;
int UpperLimit;
int Rate;
int Deduct;
public:
//數據庫操作
void sql_insert();
void sql_update(CString cTmpId);
void sql_delete(CString cTmpId);
//讀取所有字段值
void GetData(CString cTmpId);
//更新納稅基礎金額信息
void UpdateBasicNumber();
//根據金額計算納稅后金額
double CalculateSum(CString cTmpSum);
};
#endif // !defined(AFX_TAXRATE_H__C69CEA8F_2A58_46BB_BF39_44B3E874F8CC__INCLUDED_)
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -