IDP设计图纸管理
This commit is contained in:
+25
-1
@@ -188187,6 +188187,8 @@ namespace Model
|
||||
|
||||
private string _MajorNo;
|
||||
|
||||
private string _MajorName;
|
||||
|
||||
private string _Status;
|
||||
|
||||
private string _DesignUserName;
|
||||
@@ -188255,6 +188257,8 @@ namespace Model
|
||||
partial void OnFileVersionChanged();
|
||||
partial void OnMajorNoChanging(string value);
|
||||
partial void OnMajorNoChanged();
|
||||
partial void OnMajorNameChanging(string value);
|
||||
partial void OnMajorNameChanged();
|
||||
partial void OnStatusChanging(string value);
|
||||
partial void OnStatusChanged();
|
||||
partial void OnDesignUserNameChanging(string value);
|
||||
@@ -188300,7 +188304,7 @@ namespace Model
|
||||
OnCreated();
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="id", Storage="_Id", DbType="NVarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Id", DbType="NVarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)]
|
||||
public string Id
|
||||
{
|
||||
get
|
||||
@@ -188560,6 +188564,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="majorName", Storage="_MajorName", DbType="NVarChar(50)")]
|
||||
public string MajorName
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._MajorName;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._MajorName != value))
|
||||
{
|
||||
this.OnMajorNameChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._MajorName = value;
|
||||
this.SendPropertyChanged("MajorName");
|
||||
this.OnMajorNameChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="status", Storage="_Status", DbType="NVarChar(50)")]
|
||||
public string Status
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user