20260320
This commit is contained in:
@@ -155,6 +155,9 @@ namespace Model
|
||||
partial void InsertBase_Material(Base_Material instance);
|
||||
partial void UpdateBase_Material(Base_Material instance);
|
||||
partial void DeleteBase_Material(Base_Material instance);
|
||||
partial void InsertBase_MaterialUnit(Base_MaterialUnit instance);
|
||||
partial void UpdateBase_MaterialUnit(Base_MaterialUnit instance);
|
||||
partial void DeleteBase_MaterialUnit(Base_MaterialUnit instance);
|
||||
partial void InsertBase_Medium(Base_Medium instance);
|
||||
partial void UpdateBase_Medium(Base_Medium instance);
|
||||
partial void DeleteBase_Medium(Base_Medium instance);
|
||||
@@ -1712,6 +1715,9 @@ namespace Model
|
||||
partial void InsertManager_TrainSortC(Manager_TrainSortC instance);
|
||||
partial void UpdateManager_TrainSortC(Manager_TrainSortC instance);
|
||||
partial void DeleteManager_TrainSortC(Manager_TrainSortC instance);
|
||||
partial void InsertMaterialInAndOutRecord(MaterialInAndOutRecord instance);
|
||||
partial void UpdateMaterialInAndOutRecord(MaterialInAndOutRecord instance);
|
||||
partial void DeleteMaterialInAndOutRecord(MaterialInAndOutRecord instance);
|
||||
partial void InsertMeeting_AttendMeeting(Meeting_AttendMeeting instance);
|
||||
partial void UpdateMeeting_AttendMeeting(Meeting_AttendMeeting instance);
|
||||
partial void DeleteMeeting_AttendMeeting(Meeting_AttendMeeting instance);
|
||||
@@ -3238,6 +3244,14 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
public System.Data.Linq.Table<Base_MaterialUnit> Base_MaterialUnit
|
||||
{
|
||||
get
|
||||
{
|
||||
return this.GetTable<Base_MaterialUnit>();
|
||||
}
|
||||
}
|
||||
|
||||
public System.Data.Linq.Table<Base_Medium> Base_Medium
|
||||
{
|
||||
get
|
||||
@@ -7398,6 +7412,14 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
public System.Data.Linq.Table<MaterialInAndOutRecord> MaterialInAndOutRecord
|
||||
{
|
||||
get
|
||||
{
|
||||
return this.GetTable<MaterialInAndOutRecord>();
|
||||
}
|
||||
}
|
||||
|
||||
public System.Data.Linq.Table<Meeting_AttendMeeting> Meeting_AttendMeeting
|
||||
{
|
||||
get
|
||||
@@ -25237,6 +25259,140 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Base_MaterialUnit")]
|
||||
public partial class Base_MaterialUnit : INotifyPropertyChanging, INotifyPropertyChanged
|
||||
{
|
||||
|
||||
private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty);
|
||||
|
||||
private string _MaterialUnitId;
|
||||
|
||||
private string _MaterialUnitName;
|
||||
|
||||
private string _MaterialUnitCode;
|
||||
|
||||
private string _Remark;
|
||||
|
||||
#region 可扩展性方法定义
|
||||
partial void OnLoaded();
|
||||
partial void OnValidate(System.Data.Linq.ChangeAction action);
|
||||
partial void OnCreated();
|
||||
partial void OnMaterialUnitIdChanging(string value);
|
||||
partial void OnMaterialUnitIdChanged();
|
||||
partial void OnMaterialUnitNameChanging(string value);
|
||||
partial void OnMaterialUnitNameChanged();
|
||||
partial void OnMaterialUnitCodeChanging(string value);
|
||||
partial void OnMaterialUnitCodeChanged();
|
||||
partial void OnRemarkChanging(string value);
|
||||
partial void OnRemarkChanged();
|
||||
#endregion
|
||||
|
||||
public Base_MaterialUnit()
|
||||
{
|
||||
OnCreated();
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MaterialUnitId", DbType="NVarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)]
|
||||
public string MaterialUnitId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._MaterialUnitId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._MaterialUnitId != value))
|
||||
{
|
||||
this.OnMaterialUnitIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._MaterialUnitId = value;
|
||||
this.SendPropertyChanged("MaterialUnitId");
|
||||
this.OnMaterialUnitIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MaterialUnitName", DbType="NVarChar(100)")]
|
||||
public string MaterialUnitName
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._MaterialUnitName;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._MaterialUnitName != value))
|
||||
{
|
||||
this.OnMaterialUnitNameChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._MaterialUnitName = value;
|
||||
this.SendPropertyChanged("MaterialUnitName");
|
||||
this.OnMaterialUnitNameChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MaterialUnitCode", DbType="NVarChar(50)")]
|
||||
public string MaterialUnitCode
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._MaterialUnitCode;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._MaterialUnitCode != value))
|
||||
{
|
||||
this.OnMaterialUnitCodeChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._MaterialUnitCode = value;
|
||||
this.SendPropertyChanged("MaterialUnitCode");
|
||||
this.OnMaterialUnitCodeChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Remark", DbType="NVarChar(200)")]
|
||||
public string Remark
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Remark;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Remark != value))
|
||||
{
|
||||
this.OnRemarkChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._Remark = value;
|
||||
this.SendPropertyChanged("Remark");
|
||||
this.OnRemarkChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
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.Base_Medium")]
|
||||
public partial class Base_Medium : INotifyPropertyChanging, INotifyPropertyChanged
|
||||
{
|
||||
@@ -276263,6 +276419,356 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.MaterialInAndOutRecord")]
|
||||
public partial class MaterialInAndOutRecord : INotifyPropertyChanging, INotifyPropertyChanged
|
||||
{
|
||||
|
||||
private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty);
|
||||
|
||||
private string _Id;
|
||||
|
||||
private string _ProjectId;
|
||||
|
||||
private string _GoodsCategoryId;
|
||||
|
||||
private string _GoodsCategoryName;
|
||||
|
||||
private string _MaterialModel;
|
||||
|
||||
private System.Nullable<System.DateTime> _InOutDate;
|
||||
|
||||
private string _UnitId;
|
||||
|
||||
private string _InOrOut;
|
||||
|
||||
private System.Nullable<decimal> _Number;
|
||||
|
||||
private string _MaterialUnitId;
|
||||
|
||||
private string _Remark;
|
||||
|
||||
private string _CompileMan;
|
||||
|
||||
private System.Nullable<System.DateTime> _CompileDate;
|
||||
|
||||
#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 OnProjectIdChanging(string value);
|
||||
partial void OnProjectIdChanged();
|
||||
partial void OnGoodsCategoryIdChanging(string value);
|
||||
partial void OnGoodsCategoryIdChanged();
|
||||
partial void OnGoodsCategoryNameChanging(string value);
|
||||
partial void OnGoodsCategoryNameChanged();
|
||||
partial void OnMaterialModelChanging(string value);
|
||||
partial void OnMaterialModelChanged();
|
||||
partial void OnInOutDateChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnInOutDateChanged();
|
||||
partial void OnUnitIdChanging(string value);
|
||||
partial void OnUnitIdChanged();
|
||||
partial void OnInOrOutChanging(string value);
|
||||
partial void OnInOrOutChanged();
|
||||
partial void OnNumberChanging(System.Nullable<decimal> value);
|
||||
partial void OnNumberChanged();
|
||||
partial void OnMaterialUnitIdChanging(string value);
|
||||
partial void OnMaterialUnitIdChanged();
|
||||
partial void OnRemarkChanging(string value);
|
||||
partial void OnRemarkChanged();
|
||||
partial void OnCompileManChanging(string value);
|
||||
partial void OnCompileManChanged();
|
||||
partial void OnCompileDateChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnCompileDateChanged();
|
||||
#endregion
|
||||
|
||||
public MaterialInAndOutRecord()
|
||||
{
|
||||
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="_ProjectId", DbType="NVarChar(50)")]
|
||||
public string ProjectId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ProjectId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ProjectId != value))
|
||||
{
|
||||
this.OnProjectIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._ProjectId = value;
|
||||
this.SendPropertyChanged("ProjectId");
|
||||
this.OnProjectIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_GoodsCategoryId", DbType="NVarChar(50)")]
|
||||
public string GoodsCategoryId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._GoodsCategoryId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._GoodsCategoryId != value))
|
||||
{
|
||||
this.OnGoodsCategoryIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._GoodsCategoryId = value;
|
||||
this.SendPropertyChanged("GoodsCategoryId");
|
||||
this.OnGoodsCategoryIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_GoodsCategoryName", DbType="NVarChar(100)")]
|
||||
public string GoodsCategoryName
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._GoodsCategoryName;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._GoodsCategoryName != value))
|
||||
{
|
||||
this.OnGoodsCategoryNameChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._GoodsCategoryName = value;
|
||||
this.SendPropertyChanged("GoodsCategoryName");
|
||||
this.OnGoodsCategoryNameChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MaterialModel", DbType="NVarChar(100)")]
|
||||
public string MaterialModel
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._MaterialModel;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._MaterialModel != value))
|
||||
{
|
||||
this.OnMaterialModelChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._MaterialModel = value;
|
||||
this.SendPropertyChanged("MaterialModel");
|
||||
this.OnMaterialModelChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InOutDate", DbType="DateTime")]
|
||||
public System.Nullable<System.DateTime> InOutDate
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._InOutDate;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._InOutDate != value))
|
||||
{
|
||||
this.OnInOutDateChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._InOutDate = value;
|
||||
this.SendPropertyChanged("InOutDate");
|
||||
this.OnInOutDateChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UnitId", DbType="NVarChar(50)")]
|
||||
public string UnitId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._UnitId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._UnitId != value))
|
||||
{
|
||||
this.OnUnitIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._UnitId = value;
|
||||
this.SendPropertyChanged("UnitId");
|
||||
this.OnUnitIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InOrOut", DbType="NVarChar(10)")]
|
||||
public string InOrOut
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._InOrOut;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._InOrOut != value))
|
||||
{
|
||||
this.OnInOrOutChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._InOrOut = value;
|
||||
this.SendPropertyChanged("InOrOut");
|
||||
this.OnInOrOutChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Number", DbType="Decimal(18,2)")]
|
||||
public System.Nullable<decimal> Number
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Number;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Number != value))
|
||||
{
|
||||
this.OnNumberChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._Number = value;
|
||||
this.SendPropertyChanged("Number");
|
||||
this.OnNumberChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MaterialUnitId", DbType="NVarChar(50)")]
|
||||
public string MaterialUnitId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._MaterialUnitId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._MaterialUnitId != value))
|
||||
{
|
||||
this.OnMaterialUnitIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._MaterialUnitId = value;
|
||||
this.SendPropertyChanged("MaterialUnitId");
|
||||
this.OnMaterialUnitIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Remark", DbType="NVarChar(200)")]
|
||||
public string Remark
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Remark;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Remark != value))
|
||||
{
|
||||
this.OnRemarkChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._Remark = value;
|
||||
this.SendPropertyChanged("Remark");
|
||||
this.OnRemarkChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CompileMan", DbType="NVarChar(50)")]
|
||||
public string CompileMan
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._CompileMan;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._CompileMan != value))
|
||||
{
|
||||
this.OnCompileManChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._CompileMan = value;
|
||||
this.SendPropertyChanged("CompileMan");
|
||||
this.OnCompileManChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CompileDate", DbType="DateTime")]
|
||||
public System.Nullable<System.DateTime> CompileDate
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._CompileDate;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._CompileDate != value))
|
||||
{
|
||||
this.OnCompileDateChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._CompileDate = value;
|
||||
this.SendPropertyChanged("CompileDate");
|
||||
this.OnCompileDateChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
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.Meeting_AttendMeeting")]
|
||||
public partial class Meeting_AttendMeeting : INotifyPropertyChanging, INotifyPropertyChanged
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user