?? subinfo.cs
字號:
using System;
using System.Collections.Generic;
using System.Text;
namespace property.model.SubjectInfo
{
class SubInfo
{
private int subId;//科目編號
private string subGkb;//拼音簡碼
private string subName;//會計科目名稱
// private string subKind;//科目類別
private string subMoney;//期初佘額
private string subPage;//總帳頁碼
public void setsubId(int subId)
{ this.subId = subId; }
public int getsubId()
{ return subId; }
public void setsubGkb(string subGkb)
{ this.subGkb = subGkb; }
public string getsubGkb()
{ return this.subGkb; }
public void setsubName(string subName)
{ this.subName = subName; }
public string getsubName()
{ return this.subName; }
public void setsubMoney(string subMoney)
{ this.subMoney = subMoney; }
public string getsubMoney()
{ return this.subMoney; }
public void setsubPage(string subPage)
{ this.subPage = subPage; }
public string getsubPage()
{ return this.subPage; }
}// end block menthod
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -