guahaoentity.cs
来自「用c#编写的医院管理系统(部分源码)」· CS 代码 · 共 126 行
CS
126 行
using System;
using System.Collections.Generic;
using System.Text;
namespace Hospital.Hospital.entity
{
class GuaHaoEntity
{
private int Id;
public int Id1
{
get { return Id; }
set { Id = value; }
}
private string Type;
public string Type1
{
get { return Type; }
set { Type = value; }
}
private string Mode;
public string Mode1
{
get { return Mode; }
set { Mode = value; }
}
private string Name;
public string Name1
{
get { return Name; }
set { Name = value; }
}
private string Sex;
public string Sex1
{
get { return Sex; }
set { Sex = value; }
}
private int Age;
public int Age1
{
get { return Age; }
set { Age = value; }
}
private string Folk;
public string Folk1
{
get { return Folk; }
set { Folk = value; }
}
private string Phone;
public string Phone1
{
get { return Phone; }
set { Phone = value; }
}
private string Address;
public string Address1
{
get { return Address; }
set { Address = value; }
}
private string DoctorName;
public string DoctorName1
{
get { return DoctorName; }
set { DoctorName = value; }
}
private string Office;
public string Office1
{
get { return Office; }
set { Office = value; }
}
private string Item;
public string Item1
{
get { return Item; }
set { Item = value; }
}
private Decimal GuaHaoMoney;
public Decimal GuaHaoMoney1
{
get { return GuaHaoMoney; }
set { GuaHaoMoney = value; }
}
private Decimal ZhenDuanMoney;
public Decimal ZhenDuanMoney1
{
get { return ZhenDuanMoney; }
set { ZhenDuanMoney = value; }
}
private string UserName;
public string UserName1
{
get { return UserName; }
set { UserName = value; }
}
private int Bool;
public int Bool1
{
get { return Bool; }
set { Bool = value; }
}
public GuaHaoEntity()
{
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?