📄 branchinfo.cs
字号:
//============================================================
// Producnt name: BoBoARTS.CodeMad
// Version: 1.0
// Coded by: Shen Bo (bo.shen@jb-aptech.com.cn)
// Auto generated at: 2008-9-18 16:05:14
//============================================================
using System;
using System.Collections.Generic;
using System.Text;
namespace Office.Model
{
[Serializable()]
public class BranchInfo
{
private int branchId;
private string branchName = String.Empty;
private string branchShortName = String.Empty;
public BranchInfo() { }
public BranchInfo(int _branchid,String _branchname,String _branchshortname)
{
this.branchId = _branchid;
this.branchName = _branchname;
this.branchShortName = _branchshortname;
}
public int BranchId
{
get { return this.branchId; }
set { this.branchId = value; }
}
public string BranchName
{
get { return this.branchName; }
set { this.branchName = value; }
}
public string BranchShortName
{
get { return this.branchShortName; }
set { this.branchShortName = value; }
}
public override string ToString()
{
return this.BranchName;
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -