suppliersentity.cs
来自「简单的cI真的是很简单 你想要就下载吧」· CS 代码 · 共 89 行
CS
89 行
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace VinciDataAccess.Entity
{
/// <summary>
/// Name:Wicresoft's Vinci Item
/// Author:Owen Liu
/// Time:2008.2.20
public class SuppliersEntity
{
private int _supplierID;
private string _companyName;
private string _contactName;
private string _contactTitle;
private string _address;
private Nullable<int> _regionID;
private string _phone;
private string _homePage;
/// <summary>
/// propertiy of _supplierID
/// </summary>
public int SupplierID
{
get { return _supplierID; }
set { _supplierID = value; }
}
/// <summary>
/// propertiy of _companyName
/// </summary>
public string CompanyName
{
get { return _companyName; }
set { _companyName = value; }
}
/// <summary>
/// propertiy of _contactName
/// </summary>
public string ContactName
{
get { return _contactName; }
set { _contactName = value; }
}
/// <summary>
/// propertiy of _contactTitle
/// </summary>
public string ContactTitle
{
get { return _contactTitle; }
set { _contactTitle = value; }
}
/// <summary>
/// propertiy of _address
/// </summary>
public string Address
{
get { return _address; }
set { _address = value; }
}
/// <summary>
///propertiy of _regionID
/// </summary>
public Nullable<int> RegionID
{
get { return _regionID; }
set { _regionID = value; }
}
/// <summary>
/// propertiy of phone
/// </summary>
public string Phone
{
get { return _phone; }
set { _phone = value; }
}
/// <summary>
/// propertiy of _homePage
/// </summary>
public string HomePage
{
get { return _homePage; }
set { _homePage = value; }
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?