📄 dataset2.cs
字号:
return typeof(门诊划价明细Row);
}
protected override void OnRowChanged(DataRowChangeEventArgs e) {
base.OnRowChanged(e);
if ((this.门诊划价明细RowChanged != null)) {
this.门诊划价明细RowChanged(this, new 门诊划价明细RowChangeEvent(((门诊划价明细Row)(e.Row)), e.Action));
}
}
protected override void OnRowChanging(DataRowChangeEventArgs e) {
base.OnRowChanging(e);
if ((this.门诊划价明细RowChanging != null)) {
this.门诊划价明细RowChanging(this, new 门诊划价明细RowChangeEvent(((门诊划价明细Row)(e.Row)), e.Action));
}
}
protected override void OnRowDeleted(DataRowChangeEventArgs e) {
base.OnRowDeleted(e);
if ((this.门诊划价明细RowDeleted != null)) {
this.门诊划价明细RowDeleted(this, new 门诊划价明细RowChangeEvent(((门诊划价明细Row)(e.Row)), e.Action));
}
}
protected override void OnRowDeleting(DataRowChangeEventArgs e) {
base.OnRowDeleting(e);
if ((this.门诊划价明细RowDeleting != null)) {
this.门诊划价明细RowDeleting(this, new 门诊划价明细RowChangeEvent(((门诊划价明细Row)(e.Row)), e.Action));
}
}
public void Remove门诊划价明细Row(门诊划价明细Row row) {
this.Rows.Remove(row);
}
}
[System.Diagnostics.DebuggerStepThrough()]
public class 门诊划价明细Row : DataRow {
private 门诊划价明细DataTable table门诊划价明细;
internal 门诊划价明细Row(DataRowBuilder rb) :
base(rb) {
this.table门诊划价明细 = ((门诊划价明细DataTable)(this.Table));
}
public int 编号 {
get {
return ((int)(this[this.table门诊划价明细.编号Column]));
}
set {
this[this.table门诊划价明细.编号Column] = value;
}
}
public string 药品编号 {
get {
return ((string)(this[this.table门诊划价明细.药品编号Column]));
}
set {
this[this.table门诊划价明细.药品编号Column] = value;
}
}
public string 名称 {
get {
try {
return ((string)(this[this.table门诊划价明细.名称Column]));
}
catch (InvalidCastException e) {
throw new StrongTypingException("无法获取值,因为它是 DBNull。", e);
}
}
set {
this[this.table门诊划价明细.名称Column] = value;
}
}
public System.Decimal 单价 {
get {
try {
return ((System.Decimal)(this[this.table门诊划价明细.单价Column]));
}
catch (InvalidCastException e) {
throw new StrongTypingException("无法获取值,因为它是 DBNull。", e);
}
}
set {
this[this.table门诊划价明细.单价Column] = value;
}
}
public System.Decimal 数量 {
get {
try {
return ((System.Decimal)(this[this.table门诊划价明细.数量Column]));
}
catch (InvalidCastException e) {
throw new StrongTypingException("无法获取值,因为它是 DBNull。", e);
}
}
set {
this[this.table门诊划价明细.数量Column] = value;
}
}
public System.Decimal 金额 {
get {
try {
return ((System.Decimal)(this[this.table门诊划价明细.金额Column]));
}
catch (InvalidCastException e) {
throw new StrongTypingException("无法获取值,因为它是 DBNull。", e);
}
}
set {
this[this.table门诊划价明细.金额Column] = value;
}
}
public string 划价编号 {
get {
return ((string)(this[this.table门诊划价明细.划价编号Column]));
}
set {
this[this.table门诊划价明细.划价编号Column] = value;
}
}
public bool Is名称Null() {
return this.IsNull(this.table门诊划价明细.名称Column);
}
public void Set名称Null() {
this[this.table门诊划价明细.名称Column] = System.Convert.DBNull;
}
public bool Is单价Null() {
return this.IsNull(this.table门诊划价明细.单价Column);
}
public void Set单价Null() {
this[this.table门诊划价明细.单价Column] = System.Convert.DBNull;
}
public bool Is数量Null() {
return this.IsNull(this.table门诊划价明细.数量Column);
}
public void Set数量Null() {
this[this.table门诊划价明细.数量Column] = System.Convert.DBNull;
}
public bool Is金额Null() {
return this.IsNull(this.table门诊划价明细.金额Column);
}
public void Set金额Null() {
this[this.table门诊划价明细.金额Column] = System.Convert.DBNull;
}
}
[System.Diagnostics.DebuggerStepThrough()]
public class 门诊划价明细RowChangeEvent : EventArgs {
private 门诊划价明细Row eventRow;
private DataRowAction eventAction;
public 门诊划价明细RowChangeEvent(门诊划价明细Row row, DataRowAction action) {
this.eventRow = row;
this.eventAction = action;
}
public 门诊划价明细Row Row {
get {
return this.eventRow;
}
}
public DataRowAction Action {
get {
return this.eventAction;
}
}
}
[System.Diagnostics.DebuggerStepThrough()]
public class 门诊划价DataTable : DataTable, System.Collections.IEnumerable {
private DataColumn column姓名;
private DataColumn column性别;
private DataColumn column编号;
private DataColumn column科室;
private DataColumn column挂号编号;
private DataColumn column医生;
private DataColumn column划价时间;
private DataColumn column划价员;
private DataColumn column是否收费;
private DataColumn column收费员;
private DataColumn column收费时间;
private DataColumn column划价金额;
private DataColumn column是否发药;
private DataColumn column发药时间;
private DataColumn column发药员;
internal 门诊划价DataTable() :
base("门诊划价") {
this.InitClass();
}
internal 门诊划价DataTable(DataTable table) :
base(table.TableName) {
if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
this.CaseSensitive = table.CaseSensitive;
}
if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
this.Locale = table.Locale;
}
if ((table.Namespace != table.DataSet.Namespace)) {
this.Namespace = table.Namespace;
}
this.Prefix = table.Prefix;
this.MinimumCapacity = table.MinimumCapacity;
this.DisplayExpression = table.DisplayExpression;
}
[System.ComponentModel.Browsable(false)]
public int Count {
get {
return this.Rows.Count;
}
}
internal DataColumn 姓名Column {
get {
return this.column姓名;
}
}
internal DataColumn 性别Column {
get {
return this.column性别;
}
}
internal DataColumn 编号Column {
get {
return this.column编号;
}
}
internal DataColumn 科室Column {
get {
return this.column科室;
}
}
internal DataColumn 挂号编号Column {
get {
return this.column挂号编号;
}
}
internal DataColumn 医生Column {
get {
return this.column医生;
}
}
internal DataColumn 划价时间Column {
get {
return this.column划价时间;
}
}
internal DataColumn 划价员Column {
get {
return this.column划价员;
}
}
internal DataColumn 是否收费Column {
get {
return this.column是否收费;
}
}
internal DataColumn 收费员Column {
get {
return this.column收费员;
}
}
internal DataColumn 收费时间Column {
get {
return this.column收费时间;
}
}
internal DataColumn 划价
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -