From a87956baa1cc0e310b1a8c28d845c05f6fa3e546 Mon Sep 17 00:00:00 2001 From: lilili Date: Wed, 29 Mar 2023 15:43:49 +0800 Subject: [PATCH] =?UTF-8?q?=E7=94=9F=E6=88=90=E5=AE=9E=E4=BD=93=E5=AF=B9?= =?UTF-8?q?=E8=B1=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ICSSoft.Frame.Data.Entity/Fram.dbml | 50 + .../Fram.designer.cs | 1106 +++++++++++++++++ 2 files changed, 1156 insertions(+) diff --git a/ICSSoft.FromERP/ICSSoft.Frame.Data.Entity/Fram.dbml b/ICSSoft.FromERP/ICSSoft.Frame.Data.Entity/Fram.dbml index 12a1290..bebf2a6 100644 --- a/ICSSoft.FromERP/ICSSoft.Frame.Data.Entity/Fram.dbml +++ b/ICSSoft.FromERP/ICSSoft.Frame.Data.Entity/Fram.dbml @@ -405,4 +405,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/ICSSoft.FromERP/ICSSoft.Frame.Data.Entity/Fram.designer.cs b/ICSSoft.FromERP/ICSSoft.Frame.Data.Entity/Fram.designer.cs index 47613bd..6fd7786 100644 --- a/ICSSoft.FromERP/ICSSoft.Frame.Data.Entity/Fram.designer.cs +++ b/ICSSoft.FromERP/ICSSoft.Frame.Data.Entity/Fram.designer.cs @@ -81,6 +81,12 @@ namespace ICSSoft.Frame.Data.Entity partial void InsertICSWarehouse(ICSWarehouse instance); partial void UpdateICSWarehouse(ICSWarehouse instance); partial void DeleteICSWarehouse(ICSWarehouse instance); + partial void InsertICSOtherOut(ICSOtherOut instance); + partial void UpdateICSOtherOut(ICSOtherOut instance); + partial void DeleteICSOtherOut(ICSOtherOut instance); + partial void InsertICSOtherIn(ICSOtherIn instance); + partial void UpdateICSOtherIn(ICSOtherIn instance); + partial void DeleteICSOtherIn(ICSOtherIn instance); #endregion public FramDataContext() : @@ -248,6 +254,22 @@ namespace ICSSoft.Frame.Data.Entity return this.GetTable(); } } + + public System.Data.Linq.Table ICSOtherOut + { + get + { + return this.GetTable(); + } + } + + public System.Data.Linq.Table ICSOtherIn + { + get + { + return this.GetTable(); + } + } } [global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.ICSInventory")] @@ -8983,5 +9005,1089 @@ namespace ICSSoft.Frame.Data.Entity } } } + + [global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.ICSOtherOut")] + public partial class ICSOtherOut : INotifyPropertyChanging, INotifyPropertyChanged + { + + private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty); + + private string _ID; + + private string _OutCode; + + private string _WHCode; + + private string _Sequence; + + private string _InvCode; + + private decimal _Quantity; + + private System.Nullable _Amount; + + private System.Nullable _OutQuantity; + + private string _Status; + + private string _CreatePerson; + + private System.DateTime _CreateDateTime; + + private string _OutID; + + private string _OutDetailID; + + private string _TransferID; + + private string _TransferDetailID; + + private string _ExtensionID; + + private string _MUSER; + + private string _MUSERName; + + private System.DateTime _MTIME; + + private string _WorkPoint; + + private string _EATTRIBUTE1; + + #region 可扩展性方法定义 + partial void OnLoaded(); + partial void OnValidate(System.Data.Linq.ChangeAction action); + partial void OnCreated(); + partial void OnIDChanging(string value); + partial void OnIDChanged(); + partial void OnOutCodeChanging(string value); + partial void OnOutCodeChanged(); + partial void OnWHCodeChanging(string value); + partial void OnWHCodeChanged(); + partial void OnSequenceChanging(string value); + partial void OnSequenceChanged(); + partial void OnInvCodeChanging(string value); + partial void OnInvCodeChanged(); + partial void OnQuantityChanging(decimal value); + partial void OnQuantityChanged(); + partial void OnAmountChanging(System.Nullable value); + partial void OnAmountChanged(); + partial void OnOutQuantityChanging(System.Nullable value); + partial void OnOutQuantityChanged(); + partial void OnStatusChanging(string value); + partial void OnStatusChanged(); + partial void OnCreatePersonChanging(string value); + partial void OnCreatePersonChanged(); + partial void OnCreateDateTimeChanging(System.DateTime value); + partial void OnCreateDateTimeChanged(); + partial void OnOutIDChanging(string value); + partial void OnOutIDChanged(); + partial void OnOutDetailIDChanging(string value); + partial void OnOutDetailIDChanged(); + partial void OnTransferIDChanging(string value); + partial void OnTransferIDChanged(); + partial void OnTransferDetailIDChanging(string value); + partial void OnTransferDetailIDChanged(); + partial void OnExtensionIDChanging(string value); + partial void OnExtensionIDChanged(); + partial void OnMUSERChanging(string value); + partial void OnMUSERChanged(); + partial void OnMUSERNameChanging(string value); + partial void OnMUSERNameChanged(); + partial void OnMTIMEChanging(System.DateTime value); + partial void OnMTIMEChanged(); + partial void OnWorkPointChanging(string value); + partial void OnWorkPointChanged(); + partial void OnEATTRIBUTE1Changing(string value); + partial void OnEATTRIBUTE1Changed(); + #endregion + + public ICSOtherOut() + { + OnCreated(); + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ID", DbType="NVarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)] + public string ID + { + get + { + return this._ID; + } + set + { + if ((this._ID != value)) + { + this.OnIDChanging(value); + this.SendPropertyChanging(); + this._ID = value; + this.SendPropertyChanged("ID"); + this.OnIDChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_OutCode", DbType="NVarChar(50) NOT NULL", CanBeNull=false)] + public string OutCode + { + get + { + return this._OutCode; + } + set + { + if ((this._OutCode != value)) + { + this.OnOutCodeChanging(value); + this.SendPropertyChanging(); + this._OutCode = value; + this.SendPropertyChanged("OutCode"); + this.OnOutCodeChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WHCode", DbType="NVarChar(50) NOT NULL", CanBeNull=false)] + public string WHCode + { + get + { + return this._WHCode; + } + set + { + if ((this._WHCode != value)) + { + this.OnWHCodeChanging(value); + this.SendPropertyChanging(); + this._WHCode = value; + this.SendPropertyChanged("WHCode"); + this.OnWHCodeChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Sequence", DbType="NVarChar(50) NOT NULL", CanBeNull=false)] + public string Sequence + { + get + { + return this._Sequence; + } + set + { + if ((this._Sequence != value)) + { + this.OnSequenceChanging(value); + this.SendPropertyChanging(); + this._Sequence = value; + this.SendPropertyChanged("Sequence"); + this.OnSequenceChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InvCode", DbType="NVarChar(50) NOT NULL", CanBeNull=false)] + public string InvCode + { + get + { + return this._InvCode; + } + set + { + if ((this._InvCode != value)) + { + this.OnInvCodeChanging(value); + this.SendPropertyChanging(); + this._InvCode = value; + this.SendPropertyChanged("InvCode"); + this.OnInvCodeChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Quantity", DbType="Decimal(18,3) NOT NULL")] + public decimal Quantity + { + get + { + return this._Quantity; + } + set + { + if ((this._Quantity != value)) + { + this.OnQuantityChanging(value); + this.SendPropertyChanging(); + this._Quantity = value; + this.SendPropertyChanged("Quantity"); + this.OnQuantityChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Amount", DbType="Decimal(18,6)")] + public System.Nullable Amount + { + get + { + return this._Amount; + } + set + { + if ((this._Amount != value)) + { + this.OnAmountChanging(value); + this.SendPropertyChanging(); + this._Amount = value; + this.SendPropertyChanged("Amount"); + this.OnAmountChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_OutQuantity", DbType="Decimal(18,2)")] + public System.Nullable OutQuantity + { + get + { + return this._OutQuantity; + } + set + { + if ((this._OutQuantity != value)) + { + this.OnOutQuantityChanging(value); + this.SendPropertyChanging(); + this._OutQuantity = value; + this.SendPropertyChanged("OutQuantity"); + this.OnOutQuantityChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Status", DbType="NVarChar(10) NOT NULL", CanBeNull=false)] + public string Status + { + get + { + return this._Status; + } + set + { + if ((this._Status != value)) + { + this.OnStatusChanging(value); + this.SendPropertyChanging(); + this._Status = value; + this.SendPropertyChanged("Status"); + this.OnStatusChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CreatePerson", DbType="NVarChar(50) NOT NULL", CanBeNull=false)] + public string CreatePerson + { + get + { + return this._CreatePerson; + } + set + { + if ((this._CreatePerson != value)) + { + this.OnCreatePersonChanging(value); + this.SendPropertyChanging(); + this._CreatePerson = value; + this.SendPropertyChanged("CreatePerson"); + this.OnCreatePersonChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CreateDateTime", DbType="DateTime NOT NULL")] + public System.DateTime CreateDateTime + { + get + { + return this._CreateDateTime; + } + set + { + if ((this._CreateDateTime != value)) + { + this.OnCreateDateTimeChanging(value); + this.SendPropertyChanging(); + this._CreateDateTime = value; + this.SendPropertyChanged("CreateDateTime"); + this.OnCreateDateTimeChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_OutID", DbType="NVarChar(50) NOT NULL", CanBeNull=false)] + public string OutID + { + get + { + return this._OutID; + } + set + { + if ((this._OutID != value)) + { + this.OnOutIDChanging(value); + this.SendPropertyChanging(); + this._OutID = value; + this.SendPropertyChanged("OutID"); + this.OnOutIDChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_OutDetailID", DbType="NVarChar(50) NOT NULL", CanBeNull=false)] + public string OutDetailID + { + get + { + return this._OutDetailID; + } + set + { + if ((this._OutDetailID != value)) + { + this.OnOutDetailIDChanging(value); + this.SendPropertyChanging(); + this._OutDetailID = value; + this.SendPropertyChanged("OutDetailID"); + this.OnOutDetailIDChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TransferID", DbType="NVarChar(50)")] + public string TransferID + { + get + { + return this._TransferID; + } + set + { + if ((this._TransferID != value)) + { + this.OnTransferIDChanging(value); + this.SendPropertyChanging(); + this._TransferID = value; + this.SendPropertyChanged("TransferID"); + this.OnTransferIDChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TransferDetailID", DbType="NVarChar(50)")] + public string TransferDetailID + { + get + { + return this._TransferDetailID; + } + set + { + if ((this._TransferDetailID != value)) + { + this.OnTransferDetailIDChanging(value); + this.SendPropertyChanging(); + this._TransferDetailID = value; + this.SendPropertyChanged("TransferDetailID"); + this.OnTransferDetailIDChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ExtensionID", DbType="NVarChar(50) NOT NULL", CanBeNull=false)] + public string ExtensionID + { + get + { + return this._ExtensionID; + } + set + { + if ((this._ExtensionID != value)) + { + this.OnExtensionIDChanging(value); + this.SendPropertyChanging(); + this._ExtensionID = value; + this.SendPropertyChanged("ExtensionID"); + this.OnExtensionIDChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MUSER", DbType="NVarChar(50) NOT NULL", CanBeNull=false)] + public string MUSER + { + get + { + return this._MUSER; + } + set + { + if ((this._MUSER != value)) + { + this.OnMUSERChanging(value); + this.SendPropertyChanging(); + this._MUSER = value; + this.SendPropertyChanged("MUSER"); + this.OnMUSERChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MUSERName", DbType="NVarChar(50) NOT NULL", CanBeNull=false)] + public string MUSERName + { + get + { + return this._MUSERName; + } + set + { + if ((this._MUSERName != value)) + { + this.OnMUSERNameChanging(value); + this.SendPropertyChanging(); + this._MUSERName = value; + this.SendPropertyChanged("MUSERName"); + this.OnMUSERNameChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MTIME", DbType="DateTime NOT NULL")] + public System.DateTime MTIME + { + get + { + return this._MTIME; + } + set + { + if ((this._MTIME != value)) + { + this.OnMTIMEChanging(value); + this.SendPropertyChanging(); + this._MTIME = value; + this.SendPropertyChanged("MTIME"); + this.OnMTIMEChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkPoint", DbType="NVarChar(50) NOT NULL", CanBeNull=false)] + public string WorkPoint + { + get + { + return this._WorkPoint; + } + set + { + if ((this._WorkPoint != value)) + { + this.OnWorkPointChanging(value); + this.SendPropertyChanging(); + this._WorkPoint = value; + this.SendPropertyChanged("WorkPoint"); + this.OnWorkPointChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_EATTRIBUTE1", DbType="NVarChar(50)")] + public string EATTRIBUTE1 + { + get + { + return this._EATTRIBUTE1; + } + set + { + if ((this._EATTRIBUTE1 != value)) + { + this.OnEATTRIBUTE1Changing(value); + this.SendPropertyChanging(); + this._EATTRIBUTE1 = value; + this.SendPropertyChanged("EATTRIBUTE1"); + this.OnEATTRIBUTE1Changed(); + } + } + } + + public event PropertyChangingEventHandler PropertyChanging; + + public event PropertyChangedEventHandler PropertyChanged; + + protected virtual void SendPropertyChanging() + { + if ((this.PropertyChanging != null)) + { + this.PropertyChanging(this, emptyChangingEventArgs); + } + } + + protected virtual void SendPropertyChanged(String propertyName) + { + if ((this.PropertyChanged != null)) + { + this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName)); + } + } + } + + [global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.ICSOtherIn")] + public partial class ICSOtherIn : INotifyPropertyChanging, INotifyPropertyChanged + { + + private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty); + + private string _ID; + + private string _InCode; + + private string _WHCode; + + private string _Sequence; + + private string _InvCode; + + private decimal _Quantity; + + private System.Nullable _Amount; + + private System.Nullable _InQuantity; + + private string _Status; + + private string _CreatePerson; + + private System.DateTime _CreateDateTime; + + private string _InID; + + private string _InDetailID; + + private string _TransferID; + + private string _TransferDetailID; + + private string _ExtensionID; + + private string _MUSER; + + private string _MUSERName; + + private System.DateTime _MTIME; + + private string _WorkPoint; + + private string _EATTRIBUTE1; + + #region 可扩展性方法定义 + partial void OnLoaded(); + partial void OnValidate(System.Data.Linq.ChangeAction action); + partial void OnCreated(); + partial void OnIDChanging(string value); + partial void OnIDChanged(); + partial void OnInCodeChanging(string value); + partial void OnInCodeChanged(); + partial void OnWHCodeChanging(string value); + partial void OnWHCodeChanged(); + partial void OnSequenceChanging(string value); + partial void OnSequenceChanged(); + partial void OnInvCodeChanging(string value); + partial void OnInvCodeChanged(); + partial void OnQuantityChanging(decimal value); + partial void OnQuantityChanged(); + partial void OnAmountChanging(System.Nullable value); + partial void OnAmountChanged(); + partial void OnInQuantityChanging(System.Nullable value); + partial void OnInQuantityChanged(); + partial void OnStatusChanging(string value); + partial void OnStatusChanged(); + partial void OnCreatePersonChanging(string value); + partial void OnCreatePersonChanged(); + partial void OnCreateDateTimeChanging(System.DateTime value); + partial void OnCreateDateTimeChanged(); + partial void OnInIDChanging(string value); + partial void OnInIDChanged(); + partial void OnInDetailIDChanging(string value); + partial void OnInDetailIDChanged(); + partial void OnTransferIDChanging(string value); + partial void OnTransferIDChanged(); + partial void OnTransferDetailIDChanging(string value); + partial void OnTransferDetailIDChanged(); + partial void OnExtensionIDChanging(string value); + partial void OnExtensionIDChanged(); + partial void OnMUSERChanging(string value); + partial void OnMUSERChanged(); + partial void OnMUSERNameChanging(string value); + partial void OnMUSERNameChanged(); + partial void OnMTIMEChanging(System.DateTime value); + partial void OnMTIMEChanged(); + partial void OnWorkPointChanging(string value); + partial void OnWorkPointChanged(); + partial void OnEATTRIBUTE1Changing(string value); + partial void OnEATTRIBUTE1Changed(); + #endregion + + public ICSOtherIn() + { + OnCreated(); + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ID", DbType="NVarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)] + public string ID + { + get + { + return this._ID; + } + set + { + if ((this._ID != value)) + { + this.OnIDChanging(value); + this.SendPropertyChanging(); + this._ID = value; + this.SendPropertyChanged("ID"); + this.OnIDChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InCode", DbType="NVarChar(50) NOT NULL", CanBeNull=false)] + public string InCode + { + get + { + return this._InCode; + } + set + { + if ((this._InCode != value)) + { + this.OnInCodeChanging(value); + this.SendPropertyChanging(); + this._InCode = value; + this.SendPropertyChanged("InCode"); + this.OnInCodeChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WHCode", DbType="NVarChar(50) NOT NULL", CanBeNull=false)] + public string WHCode + { + get + { + return this._WHCode; + } + set + { + if ((this._WHCode != value)) + { + this.OnWHCodeChanging(value); + this.SendPropertyChanging(); + this._WHCode = value; + this.SendPropertyChanged("WHCode"); + this.OnWHCodeChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Sequence", DbType="NVarChar(50) NOT NULL", CanBeNull=false)] + public string Sequence + { + get + { + return this._Sequence; + } + set + { + if ((this._Sequence != value)) + { + this.OnSequenceChanging(value); + this.SendPropertyChanging(); + this._Sequence = value; + this.SendPropertyChanged("Sequence"); + this.OnSequenceChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InvCode", DbType="NVarChar(50) NOT NULL", CanBeNull=false)] + public string InvCode + { + get + { + return this._InvCode; + } + set + { + if ((this._InvCode != value)) + { + this.OnInvCodeChanging(value); + this.SendPropertyChanging(); + this._InvCode = value; + this.SendPropertyChanged("InvCode"); + this.OnInvCodeChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Quantity", DbType="Decimal(18,3) NOT NULL")] + public decimal Quantity + { + get + { + return this._Quantity; + } + set + { + if ((this._Quantity != value)) + { + this.OnQuantityChanging(value); + this.SendPropertyChanging(); + this._Quantity = value; + this.SendPropertyChanged("Quantity"); + this.OnQuantityChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Amount", DbType="Decimal(18,6)")] + public System.Nullable Amount + { + get + { + return this._Amount; + } + set + { + if ((this._Amount != value)) + { + this.OnAmountChanging(value); + this.SendPropertyChanging(); + this._Amount = value; + this.SendPropertyChanged("Amount"); + this.OnAmountChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InQuantity", DbType="Decimal(18,2)")] + public System.Nullable InQuantity + { + get + { + return this._InQuantity; + } + set + { + if ((this._InQuantity != value)) + { + this.OnInQuantityChanging(value); + this.SendPropertyChanging(); + this._InQuantity = value; + this.SendPropertyChanged("InQuantity"); + this.OnInQuantityChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Status", DbType="NVarChar(10) NOT NULL", CanBeNull=false)] + public string Status + { + get + { + return this._Status; + } + set + { + if ((this._Status != value)) + { + this.OnStatusChanging(value); + this.SendPropertyChanging(); + this._Status = value; + this.SendPropertyChanged("Status"); + this.OnStatusChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CreatePerson", DbType="NVarChar(50) NOT NULL", CanBeNull=false)] + public string CreatePerson + { + get + { + return this._CreatePerson; + } + set + { + if ((this._CreatePerson != value)) + { + this.OnCreatePersonChanging(value); + this.SendPropertyChanging(); + this._CreatePerson = value; + this.SendPropertyChanged("CreatePerson"); + this.OnCreatePersonChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CreateDateTime", DbType="DateTime NOT NULL")] + public System.DateTime CreateDateTime + { + get + { + return this._CreateDateTime; + } + set + { + if ((this._CreateDateTime != value)) + { + this.OnCreateDateTimeChanging(value); + this.SendPropertyChanging(); + this._CreateDateTime = value; + this.SendPropertyChanged("CreateDateTime"); + this.OnCreateDateTimeChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InID", DbType="NVarChar(50) NOT NULL", CanBeNull=false)] + public string InID + { + get + { + return this._InID; + } + set + { + if ((this._InID != value)) + { + this.OnInIDChanging(value); + this.SendPropertyChanging(); + this._InID = value; + this.SendPropertyChanged("InID"); + this.OnInIDChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InDetailID", DbType="NVarChar(50) NOT NULL", CanBeNull=false)] + public string InDetailID + { + get + { + return this._InDetailID; + } + set + { + if ((this._InDetailID != value)) + { + this.OnInDetailIDChanging(value); + this.SendPropertyChanging(); + this._InDetailID = value; + this.SendPropertyChanged("InDetailID"); + this.OnInDetailIDChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TransferID", DbType="NVarChar(50)")] + public string TransferID + { + get + { + return this._TransferID; + } + set + { + if ((this._TransferID != value)) + { + this.OnTransferIDChanging(value); + this.SendPropertyChanging(); + this._TransferID = value; + this.SendPropertyChanged("TransferID"); + this.OnTransferIDChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TransferDetailID", DbType="NVarChar(50)")] + public string TransferDetailID + { + get + { + return this._TransferDetailID; + } + set + { + if ((this._TransferDetailID != value)) + { + this.OnTransferDetailIDChanging(value); + this.SendPropertyChanging(); + this._TransferDetailID = value; + this.SendPropertyChanged("TransferDetailID"); + this.OnTransferDetailIDChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ExtensionID", DbType="NVarChar(50) NOT NULL", CanBeNull=false)] + public string ExtensionID + { + get + { + return this._ExtensionID; + } + set + { + if ((this._ExtensionID != value)) + { + this.OnExtensionIDChanging(value); + this.SendPropertyChanging(); + this._ExtensionID = value; + this.SendPropertyChanged("ExtensionID"); + this.OnExtensionIDChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MUSER", DbType="NVarChar(50) NOT NULL", CanBeNull=false)] + public string MUSER + { + get + { + return this._MUSER; + } + set + { + if ((this._MUSER != value)) + { + this.OnMUSERChanging(value); + this.SendPropertyChanging(); + this._MUSER = value; + this.SendPropertyChanged("MUSER"); + this.OnMUSERChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MUSERName", DbType="NVarChar(50) NOT NULL", CanBeNull=false)] + public string MUSERName + { + get + { + return this._MUSERName; + } + set + { + if ((this._MUSERName != value)) + { + this.OnMUSERNameChanging(value); + this.SendPropertyChanging(); + this._MUSERName = value; + this.SendPropertyChanged("MUSERName"); + this.OnMUSERNameChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MTIME", DbType="DateTime NOT NULL")] + public System.DateTime MTIME + { + get + { + return this._MTIME; + } + set + { + if ((this._MTIME != value)) + { + this.OnMTIMEChanging(value); + this.SendPropertyChanging(); + this._MTIME = value; + this.SendPropertyChanged("MTIME"); + this.OnMTIMEChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkPoint", DbType="NVarChar(50) NOT NULL", CanBeNull=false)] + public string WorkPoint + { + get + { + return this._WorkPoint; + } + set + { + if ((this._WorkPoint != value)) + { + this.OnWorkPointChanging(value); + this.SendPropertyChanging(); + this._WorkPoint = value; + this.SendPropertyChanged("WorkPoint"); + this.OnWorkPointChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_EATTRIBUTE1", DbType="NVarChar(50)")] + public string EATTRIBUTE1 + { + get + { + return this._EATTRIBUTE1; + } + set + { + if ((this._EATTRIBUTE1 != value)) + { + this.OnEATTRIBUTE1Changing(value); + this.SendPropertyChanging(); + this._EATTRIBUTE1 = value; + this.SendPropertyChanged("EATTRIBUTE1"); + this.OnEATTRIBUTE1Changed(); + } + } + } + + public event PropertyChangingEventHandler PropertyChanging; + + public event PropertyChangedEventHandler PropertyChanged; + + protected virtual void SendPropertyChanging() + { + if ((this.PropertyChanging != null)) + { + this.PropertyChanging(this, emptyChangingEventArgs); + } + } + + protected virtual void SendPropertyChanged(String propertyName) + { + if ((this.PropertyChanged != null)) + { + this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName)); + } + } + } } #pragma warning restore 1591