班前会
This commit is contained in:
+341
-4
@@ -551,6 +551,9 @@ namespace Model
|
||||
partial void InsertCl_b_unitapp(Cl_b_unitapp instance);
|
||||
partial void UpdateCl_b_unitapp(Cl_b_unitapp instance);
|
||||
partial void DeleteCl_b_unitapp(Cl_b_unitapp instance);
|
||||
partial void InsertCl_F_MaterialStorageS(Cl_F_MaterialStorageS instance);
|
||||
partial void UpdateCl_F_MaterialStorageS(Cl_F_MaterialStorageS instance);
|
||||
partial void DeleteCl_F_MaterialStorageS(Cl_F_MaterialStorageS instance);
|
||||
partial void InsertCl_file(Cl_file instance);
|
||||
partial void UpdateCl_file(Cl_file instance);
|
||||
partial void DeleteCl_file(Cl_file instance);
|
||||
@@ -4288,6 +4291,14 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
public System.Data.Linq.Table<Cl_F_MaterialStorageS> Cl_F_MaterialStorageS
|
||||
{
|
||||
get
|
||||
{
|
||||
return this.GetTable<Cl_F_MaterialStorageS>();
|
||||
}
|
||||
}
|
||||
|
||||
public System.Data.Linq.Table<Cl_file> Cl_file
|
||||
{
|
||||
get
|
||||
@@ -90668,6 +90679,308 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Cl_F_MaterialStorageS")]
|
||||
public partial class Cl_F_MaterialStorageS : INotifyPropertyChanging, INotifyPropertyChanged
|
||||
{
|
||||
|
||||
private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty);
|
||||
|
||||
private string _ProjectId;
|
||||
|
||||
private string _InstallationId;
|
||||
|
||||
private string _StorageFzSID;
|
||||
|
||||
private string _StorageSheetMID;
|
||||
|
||||
private string _StorageSheetSID;
|
||||
|
||||
private string _MaterialID;
|
||||
|
||||
private System.Nullable<decimal> _StorageQuantity;
|
||||
|
||||
private string _PlanSheetSID;
|
||||
|
||||
private string _PlanSheetMID;
|
||||
|
||||
private System.Nullable<decimal> _Quantity;
|
||||
|
||||
private string _AreaCode;
|
||||
|
||||
#region 可扩展性方法定义
|
||||
partial void OnLoaded();
|
||||
partial void OnValidate(System.Data.Linq.ChangeAction action);
|
||||
partial void OnCreated();
|
||||
partial void OnProjectIdChanging(string value);
|
||||
partial void OnProjectIdChanged();
|
||||
partial void OnInstallationIdChanging(string value);
|
||||
partial void OnInstallationIdChanged();
|
||||
partial void OnStorageFzSIDChanging(string value);
|
||||
partial void OnStorageFzSIDChanged();
|
||||
partial void OnStorageSheetMIDChanging(string value);
|
||||
partial void OnStorageSheetMIDChanged();
|
||||
partial void OnStorageSheetSIDChanging(string value);
|
||||
partial void OnStorageSheetSIDChanged();
|
||||
partial void OnMaterialIDChanging(string value);
|
||||
partial void OnMaterialIDChanged();
|
||||
partial void OnStorageQuantityChanging(System.Nullable<decimal> value);
|
||||
partial void OnStorageQuantityChanged();
|
||||
partial void OnPlanSheetSIDChanging(string value);
|
||||
partial void OnPlanSheetSIDChanged();
|
||||
partial void OnPlanSheetMIDChanging(string value);
|
||||
partial void OnPlanSheetMIDChanged();
|
||||
partial void OnQuantityChanging(System.Nullable<decimal> value);
|
||||
partial void OnQuantityChanged();
|
||||
partial void OnAreaCodeChanging(string value);
|
||||
partial void OnAreaCodeChanged();
|
||||
#endregion
|
||||
|
||||
public Cl_F_MaterialStorageS()
|
||||
{
|
||||
OnCreated();
|
||||
}
|
||||
|
||||
[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="_InstallationId", DbType="NVarChar(50)")]
|
||||
public string InstallationId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._InstallationId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._InstallationId != value))
|
||||
{
|
||||
this.OnInstallationIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._InstallationId = value;
|
||||
this.SendPropertyChanged("InstallationId");
|
||||
this.OnInstallationIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_StorageFzSID", DbType="Char(36) NOT NULL", CanBeNull=false, IsPrimaryKey=true)]
|
||||
public string StorageFzSID
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._StorageFzSID;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._StorageFzSID != value))
|
||||
{
|
||||
this.OnStorageFzSIDChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._StorageFzSID = value;
|
||||
this.SendPropertyChanged("StorageFzSID");
|
||||
this.OnStorageFzSIDChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_StorageSheetMID", DbType="Char(36)")]
|
||||
public string StorageSheetMID
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._StorageSheetMID;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._StorageSheetMID != value))
|
||||
{
|
||||
this.OnStorageSheetMIDChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._StorageSheetMID = value;
|
||||
this.SendPropertyChanged("StorageSheetMID");
|
||||
this.OnStorageSheetMIDChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_StorageSheetSID", DbType="Char(36)")]
|
||||
public string StorageSheetSID
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._StorageSheetSID;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._StorageSheetSID != value))
|
||||
{
|
||||
this.OnStorageSheetSIDChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._StorageSheetSID = value;
|
||||
this.SendPropertyChanged("StorageSheetSID");
|
||||
this.OnStorageSheetSIDChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MaterialID", DbType="Char(36)")]
|
||||
public string MaterialID
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._MaterialID;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._MaterialID != value))
|
||||
{
|
||||
this.OnMaterialIDChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._MaterialID = value;
|
||||
this.SendPropertyChanged("MaterialID");
|
||||
this.OnMaterialIDChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_StorageQuantity", DbType="Decimal(10,4)")]
|
||||
public System.Nullable<decimal> StorageQuantity
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._StorageQuantity;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._StorageQuantity != value))
|
||||
{
|
||||
this.OnStorageQuantityChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._StorageQuantity = value;
|
||||
this.SendPropertyChanged("StorageQuantity");
|
||||
this.OnStorageQuantityChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PlanSheetSID", DbType="Char(36)")]
|
||||
public string PlanSheetSID
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._PlanSheetSID;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._PlanSheetSID != value))
|
||||
{
|
||||
this.OnPlanSheetSIDChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._PlanSheetSID = value;
|
||||
this.SendPropertyChanged("PlanSheetSID");
|
||||
this.OnPlanSheetSIDChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PlanSheetMID", DbType="NVarChar(36)")]
|
||||
public string PlanSheetMID
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._PlanSheetMID;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._PlanSheetMID != value))
|
||||
{
|
||||
this.OnPlanSheetMIDChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._PlanSheetMID = value;
|
||||
this.SendPropertyChanged("PlanSheetMID");
|
||||
this.OnPlanSheetMIDChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="quantity", Storage="_Quantity", DbType="Decimal(15,2)")]
|
||||
public System.Nullable<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="_AreaCode", DbType="NVarChar(20)")]
|
||||
public string AreaCode
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._AreaCode;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._AreaCode != value))
|
||||
{
|
||||
this.OnAreaCodeChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._AreaCode = value;
|
||||
this.SendPropertyChanged("AreaCode");
|
||||
this.OnAreaCodeChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
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.cl_file")]
|
||||
public partial class Cl_file : INotifyPropertyChanging, INotifyPropertyChanged
|
||||
{
|
||||
@@ -102353,7 +102666,7 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_OutQuantity", DbType="Decimal(15,2)", UpdateCheck=UpdateCheck.Never)]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_OutQuantity", DbType="Decimal(15,4)", UpdateCheck=UpdateCheck.Never)]
|
||||
public System.Nullable<decimal> OutQuantity
|
||||
{
|
||||
get
|
||||
@@ -102413,7 +102726,7 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CertificatesFactoryNo", DbType="NVarChar(50)", UpdateCheck=UpdateCheck.Never)]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CertificatesFactoryNo", DbType="NVarChar(500)", UpdateCheck=UpdateCheck.Never)]
|
||||
public string CertificatesFactoryNo
|
||||
{
|
||||
get
|
||||
@@ -104152,7 +104465,7 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_RecordTableOptions", DbType="NVarChar(100)")]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_RecordTableOptions", DbType="NVarChar(500)")]
|
||||
public string RecordTableOptions
|
||||
{
|
||||
get
|
||||
@@ -107715,7 +108028,7 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_RecordTableOptions", DbType="NVarChar(100)", UpdateCheck=UpdateCheck.Never)]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_RecordTableOptions", DbType="NVarChar(500)", UpdateCheck=UpdateCheck.Never)]
|
||||
public string RecordTableOptions
|
||||
{
|
||||
get
|
||||
@@ -298809,6 +299122,8 @@ namespace Model
|
||||
|
||||
private string _MeetingHostManOther;
|
||||
|
||||
private System.Nullable<int> _ManagePersonNum;
|
||||
|
||||
private EntityRef<Base_Project> _Base_Project;
|
||||
|
||||
private EntityRef<Base_Unit> _Base_Unit;
|
||||
@@ -298855,6 +299170,8 @@ namespace Model
|
||||
partial void OnAttentPersonNumChanged();
|
||||
partial void OnMeetingHostManOtherChanging(string value);
|
||||
partial void OnMeetingHostManOtherChanged();
|
||||
partial void OnManagePersonNumChanging(System.Nullable<int> value);
|
||||
partial void OnManagePersonNumChanged();
|
||||
#endregion
|
||||
|
||||
public Meeting_ClassMeeting()
|
||||
@@ -299222,6 +299539,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ManagePersonNum", DbType="Int")]
|
||||
public System.Nullable<int> ManagePersonNum
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ManagePersonNum;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ManagePersonNum != value))
|
||||
{
|
||||
this.OnManagePersonNumChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._ManagePersonNum = value;
|
||||
this.SendPropertyChanged("ManagePersonNum");
|
||||
this.OnManagePersonNumChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Meeting_ClassMeeting_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
|
||||
public Base_Project Base_Project
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user