提交代码

This commit is contained in:
高飞 2024-02-02 10:52:45 +08:00
parent e384e322be
commit 5074d80167
1 changed files with 18 additions and 0 deletions

View File

@ -414982,6 +414982,8 @@ namespace Model
private string _Status;
private System.Nullable<System.DateTime> _ADate;
public View_TransferDetail()
{
}
@ -415097,6 +415099,22 @@ namespace Model
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="aDate", Storage="_ADate", DbType="DateTime")]
public System.Nullable<System.DateTime> ADate
{
get
{
return this._ADate;
}
set
{
if ((this._ADate != value))
{
this._ADate = value;
}
}
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.View_WBS")]