2023-03-29 001 合同招标文件台账修改
This commit is contained in:
+59
-11
@@ -11880,7 +11880,7 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ToKeyId", DbType="NVarChar(50)")]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ToKeyId", DbType="NVarChar(100)")]
|
||||
public string ToKeyId
|
||||
{
|
||||
get
|
||||
@@ -11960,7 +11960,7 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AttachPath", DbType="NVarChar(50)")]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AttachPath", DbType="NVarChar(100)")]
|
||||
public string AttachPath
|
||||
{
|
||||
get
|
||||
@@ -74357,7 +74357,7 @@ namespace Model
|
||||
OnCreated();
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MaterialCode", DbType="NVarChar(15) NOT NULL", CanBeNull=false, IsPrimaryKey=true)]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MaterialCode", DbType="NVarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)]
|
||||
public string MaterialCode
|
||||
{
|
||||
get
|
||||
@@ -74461,7 +74461,7 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MaterialDef", DbType="NVarChar(3000)")]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MaterialDef", DbType="NVarChar(MAX)", UpdateCheck=UpdateCheck.Never)]
|
||||
public string MaterialDef
|
||||
{
|
||||
get
|
||||
@@ -79051,7 +79051,7 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MaterialCode", DbType="NVarChar(15)")]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MaterialCode", DbType="NVarChar(50)")]
|
||||
public string MaterialCode
|
||||
{
|
||||
get
|
||||
@@ -122768,7 +122768,7 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MaterialName", DbType="NVarChar(50)")]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MaterialName", DbType="NVarChar(100)")]
|
||||
public string MaterialName
|
||||
{
|
||||
get
|
||||
@@ -122788,7 +122788,7 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SpecificationAndModel", DbType="NVarChar(50)")]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SpecificationAndModel", DbType="NVarChar(200)")]
|
||||
public string SpecificationAndModel
|
||||
{
|
||||
get
|
||||
@@ -122808,7 +122808,7 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MaterialCode", DbType="NVarChar(50)")]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MaterialCode", DbType="NVarChar(100)")]
|
||||
public string MaterialCode
|
||||
{
|
||||
get
|
||||
@@ -122828,7 +122828,7 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Material", DbType="NVarChar(50)")]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Material", DbType="NVarChar(100)")]
|
||||
public string Material
|
||||
{
|
||||
get
|
||||
@@ -151295,6 +151295,10 @@ namespace Model
|
||||
|
||||
private System.Nullable<int> _State;
|
||||
|
||||
private string _BidNoticeCode;
|
||||
|
||||
private string _BidUnitFileCode;
|
||||
|
||||
#region 可扩展性方法定义
|
||||
partial void OnLoaded();
|
||||
partial void OnValidate(System.Data.Linq.ChangeAction action);
|
||||
@@ -151335,6 +151339,10 @@ namespace Model
|
||||
partial void OnProjectIdChanged();
|
||||
partial void OnStateChanging(System.Nullable<int> value);
|
||||
partial void OnStateChanged();
|
||||
partial void OnBidNoticeCodeChanging(string value);
|
||||
partial void OnBidNoticeCodeChanged();
|
||||
partial void OnBidUnitFileCodeChanging(string value);
|
||||
partial void OnBidUnitFileCodeChanged();
|
||||
#endregion
|
||||
|
||||
public PHTGL_BidDocumentsStandingBook()
|
||||
@@ -151702,6 +151710,46 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_BidNoticeCode", DbType="NVarChar(100)")]
|
||||
public string BidNoticeCode
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._BidNoticeCode;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._BidNoticeCode != value))
|
||||
{
|
||||
this.OnBidNoticeCodeChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._BidNoticeCode = value;
|
||||
this.SendPropertyChanged("BidNoticeCode");
|
||||
this.OnBidNoticeCodeChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_BidUnitFileCode", DbType="NVarChar(100)")]
|
||||
public string BidUnitFileCode
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._BidUnitFileCode;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._BidUnitFileCode != value))
|
||||
{
|
||||
this.OnBidUnitFileCodeChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._BidUnitFileCode = value;
|
||||
this.SendPropertyChanged("BidUnitFileCode");
|
||||
this.OnBidUnitFileCodeChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public event PropertyChangingEventHandler PropertyChanging;
|
||||
|
||||
public event PropertyChangedEventHandler PropertyChanged;
|
||||
@@ -220731,7 +220779,7 @@ namespace Model
|
||||
{
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ToKeyId", DbType="NVarChar(50)")]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ToKeyId", DbType="NVarChar(100)")]
|
||||
public string ToKeyId
|
||||
{
|
||||
get
|
||||
@@ -245576,7 +245624,7 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ToKeyId", DbType="NVarChar(50)")]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ToKeyId", DbType="NVarChar(100)")]
|
||||
public string ToKeyId
|
||||
{
|
||||
get
|
||||
|
||||
Reference in New Issue
Block a user