提交代码
This commit is contained in:
parent
8d4646f889
commit
fdf500e8d0
|
@ -9762,6 +9762,14 @@ namespace Model
|
|||
}
|
||||
}
|
||||
|
||||
public System.Data.Linq.Table<View_TransferDetail> View_TransferDetail
|
||||
{
|
||||
get
|
||||
{
|
||||
return this.GetTable<View_TransferDetail>();
|
||||
}
|
||||
}
|
||||
|
||||
public System.Data.Linq.Table<View_WBS> View_WBS
|
||||
{
|
||||
get
|
||||
|
@ -414716,6 +414724,141 @@ namespace Model
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.View_TransferDetail")]
|
||||
public partial class View_TransferDetail
|
||||
{
|
||||
|
||||
private string _Projectid;
|
||||
|
||||
private string _SystemName;
|
||||
|
||||
private string _Subsystem;
|
||||
|
||||
private string _TestPackage;
|
||||
|
||||
private System.Nullable<System.DateTime> _SDate;
|
||||
|
||||
private System.Nullable<System.DateTime> _FDate;
|
||||
|
||||
private string _Status;
|
||||
|
||||
public View_TransferDetail()
|
||||
{
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Projectid", DbType="NVarChar(50)")]
|
||||
public string Projectid
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Projectid;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Projectid != value))
|
||||
{
|
||||
this._Projectid = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SystemName", DbType="NVarChar(50)")]
|
||||
public string SystemName
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._SystemName;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._SystemName != value))
|
||||
{
|
||||
this._SystemName = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Subsystem", DbType="NVarChar(50)")]
|
||||
public string Subsystem
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Subsystem;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Subsystem != value))
|
||||
{
|
||||
this._Subsystem = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TestPackage", DbType="NVarChar(50)")]
|
||||
public string TestPackage
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._TestPackage;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._TestPackage != value))
|
||||
{
|
||||
this._TestPackage = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="sDate", Storage="_SDate", DbType="DateTime")]
|
||||
public System.Nullable<System.DateTime> SDate
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._SDate;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._SDate != value))
|
||||
{
|
||||
this._SDate = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="fDate", Storage="_FDate", DbType="DateTime")]
|
||||
public System.Nullable<System.DateTime> FDate
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._FDate;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._FDate != value))
|
||||
{
|
||||
this._FDate = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Status", DbType="NVarChar(50)")]
|
||||
public string Status
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Status;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Status != value))
|
||||
{
|
||||
this._Status = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.View_WBS")]
|
||||
public partial class View_WBS
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue