河北专项检查和移动端
This commit is contained in:
+338
-176
@@ -228799,18 +228799,20 @@ namespace Model
|
||||
|
||||
private string _States;
|
||||
|
||||
private string _InspectMan;
|
||||
|
||||
private string _InspectType;
|
||||
|
||||
private string _InspectItemSetId;
|
||||
|
||||
private string _ProjectStates;
|
||||
|
||||
private string _CreateMan;
|
||||
|
||||
private System.Nullable<System.DateTime> _CreateTime;
|
||||
|
||||
private string _ProblemTypeId;
|
||||
|
||||
private string _ProblemTypeName;
|
||||
|
||||
private string _Place;
|
||||
|
||||
private string _CheckMan;
|
||||
|
||||
private EntityRef<Base_Project> _Base_Project;
|
||||
|
||||
private EntitySet<Inspect_InspectionItem> _Inspect_InspectionItem;
|
||||
@@ -228833,18 +228835,20 @@ namespace Model
|
||||
partial void OnDescriptionChanged();
|
||||
partial void OnStatesChanging(string value);
|
||||
partial void OnStatesChanged();
|
||||
partial void OnInspectManChanging(string value);
|
||||
partial void OnInspectManChanged();
|
||||
partial void OnInspectTypeChanging(string value);
|
||||
partial void OnInspectTypeChanged();
|
||||
partial void OnInspectItemSetIdChanging(string value);
|
||||
partial void OnInspectItemSetIdChanged();
|
||||
partial void OnProjectStatesChanging(string value);
|
||||
partial void OnProjectStatesChanged();
|
||||
partial void OnCreateManChanging(string value);
|
||||
partial void OnCreateManChanged();
|
||||
partial void OnCreateTimeChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnCreateTimeChanged();
|
||||
partial void OnProblemTypeIdChanging(string value);
|
||||
partial void OnProblemTypeIdChanged();
|
||||
partial void OnProblemTypeNameChanging(string value);
|
||||
partial void OnProblemTypeNameChanged();
|
||||
partial void OnPlaceChanging(string value);
|
||||
partial void OnPlaceChanged();
|
||||
partial void OnCheckManChanging(string value);
|
||||
partial void OnCheckManChanged();
|
||||
#endregion
|
||||
|
||||
public Inspect_Inspection()
|
||||
@@ -228874,7 +228878,7 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InspectionCode", DbType="NVarChar(50)")]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InspectionCode", DbType="NVarChar(50) NOT NULL", CanBeNull=false)]
|
||||
public string InspectionCode
|
||||
{
|
||||
get
|
||||
@@ -228998,26 +229002,6 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InspectMan", DbType="NVarChar(50)")]
|
||||
public string InspectMan
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._InspectMan;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._InspectMan != value))
|
||||
{
|
||||
this.OnInspectManChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._InspectMan = value;
|
||||
this.SendPropertyChanged("InspectMan");
|
||||
this.OnInspectManChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InspectType", DbType="Char(1)")]
|
||||
public string InspectType
|
||||
{
|
||||
@@ -229038,46 +229022,6 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InspectItemSetId", DbType="NVarChar(50)")]
|
||||
public string InspectItemSetId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._InspectItemSetId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._InspectItemSetId != value))
|
||||
{
|
||||
this.OnInspectItemSetIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._InspectItemSetId = value;
|
||||
this.SendPropertyChanged("InspectItemSetId");
|
||||
this.OnInspectItemSetIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProjectStates", DbType="Char(1)")]
|
||||
public string ProjectStates
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ProjectStates;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ProjectStates != value))
|
||||
{
|
||||
this.OnProjectStatesChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._ProjectStates = value;
|
||||
this.SendPropertyChanged("ProjectStates");
|
||||
this.OnProjectStatesChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CreateMan", DbType="NVarChar(50)")]
|
||||
public string CreateMan
|
||||
{
|
||||
@@ -229118,6 +229062,86 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProblemTypeId", DbType="VarChar(50)")]
|
||||
public string ProblemTypeId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ProblemTypeId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ProblemTypeId != value))
|
||||
{
|
||||
this.OnProblemTypeIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._ProblemTypeId = value;
|
||||
this.SendPropertyChanged("ProblemTypeId");
|
||||
this.OnProblemTypeIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProblemTypeName", DbType="VarChar(255)")]
|
||||
public string ProblemTypeName
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ProblemTypeName;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ProblemTypeName != value))
|
||||
{
|
||||
this.OnProblemTypeNameChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._ProblemTypeName = value;
|
||||
this.SendPropertyChanged("ProblemTypeName");
|
||||
this.OnProblemTypeNameChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Place", DbType="VarChar(500)")]
|
||||
public string Place
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Place;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Place != value))
|
||||
{
|
||||
this.OnPlaceChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._Place = value;
|
||||
this.SendPropertyChanged("Place");
|
||||
this.OnPlaceChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CheckMan", DbType="VarChar(100)")]
|
||||
public string CheckMan
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._CheckMan;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._CheckMan != value))
|
||||
{
|
||||
this.OnCheckManChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._CheckMan = value;
|
||||
this.SendPropertyChanged("CheckMan");
|
||||
this.OnCheckManChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Inspect_Inspection_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
|
||||
public Base_Project Base_Project
|
||||
{
|
||||
@@ -229208,15 +229232,13 @@ namespace Model
|
||||
|
||||
private string _InspectionId;
|
||||
|
||||
private string _InspectionItemCode;
|
||||
private string _ProblemDetial;
|
||||
|
||||
private string _ProjectId;
|
||||
|
||||
private string _InspectionDescribe;
|
||||
private string _ProblemTypeId;
|
||||
|
||||
private string _PhotoUrl;
|
||||
|
||||
private string _VideoUrl;
|
||||
private string _BeforelUrl;
|
||||
|
||||
private string _EvaluateResults;
|
||||
|
||||
@@ -229228,13 +229250,25 @@ namespace Model
|
||||
|
||||
private string _States;
|
||||
|
||||
private string _CompileMan;
|
||||
private string _CreateMan;
|
||||
|
||||
private System.Nullable<System.DateTime> _CompileTime;
|
||||
|
||||
private string _RectificationPhotoUrl;
|
||||
private string _RectificationVideoUrl;
|
||||
private EntityRef<Base_Project> _Base_Project;
|
||||
private string _AfterUrl;
|
||||
|
||||
private string _ResponsiblePersonId;
|
||||
|
||||
private System.Nullable<System.DateTime> _RectificationDate;
|
||||
|
||||
private string _Level;
|
||||
|
||||
private string _WorkAreaName;
|
||||
|
||||
private System.Nullable<System.DateTime> _AuditTime;
|
||||
|
||||
private string _AuditMan;
|
||||
|
||||
private EntityRef<Base_Project> _Base_Project;
|
||||
|
||||
private EntityRef<Inspect_Inspection> _Inspect_Inspection;
|
||||
|
||||
@@ -229246,16 +229280,14 @@ namespace Model
|
||||
partial void OnInspectionItemIdChanged();
|
||||
partial void OnInspectionIdChanging(string value);
|
||||
partial void OnInspectionIdChanged();
|
||||
partial void OnInspectionItemCodeChanging(string value);
|
||||
partial void OnInspectionItemCodeChanged();
|
||||
partial void OnProblemDetialChanging(string value);
|
||||
partial void OnProblemDetialChanged();
|
||||
partial void OnProjectIdChanging(string value);
|
||||
partial void OnProjectIdChanged();
|
||||
partial void OnInspectionDescribeChanging(string value);
|
||||
partial void OnInspectionDescribeChanged();
|
||||
partial void OnPhotoUrlChanging(string value);
|
||||
partial void OnPhotoUrlChanged();
|
||||
partial void OnVideoUrlChanging(string value);
|
||||
partial void OnVideoUrlChanged();
|
||||
partial void OnProblemTypeIdChanging(string value);
|
||||
partial void OnProblemTypeIdChanged();
|
||||
partial void OnBeforelUrlChanging(string value);
|
||||
partial void OnBeforelUrlChanged();
|
||||
partial void OnEvaluateResultsChanging(string value);
|
||||
partial void OnEvaluateResultsChanged();
|
||||
partial void OnTimeLimitedChanging(System.Nullable<System.DateTime> value);
|
||||
@@ -229266,12 +229298,24 @@ namespace Model
|
||||
partial void OnRectificationResultsChanged();
|
||||
partial void OnStatesChanging(string value);
|
||||
partial void OnStatesChanged();
|
||||
partial void OnCompileManChanging(string value);
|
||||
partial void OnCompileManChanged();
|
||||
partial void OnCreateManChanging(string value);
|
||||
partial void OnCreateManChanged();
|
||||
partial void OnCompileTimeChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnCompileTimeChanged();
|
||||
partial void OnRectificationPhotoUrlChanging(string value);
|
||||
partial void OnRectificationPhotoUrlChanged();
|
||||
partial void OnAfterUrlChanging(string value);
|
||||
partial void OnAfterUrlChanged();
|
||||
partial void OnResponsiblePersonIdChanging(string value);
|
||||
partial void OnResponsiblePersonIdChanged();
|
||||
partial void OnRectificationDateChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnRectificationDateChanged();
|
||||
partial void OnLevelChanging(string value);
|
||||
partial void OnLevelChanged();
|
||||
partial void OnWorkAreaNameChanging(string value);
|
||||
partial void OnWorkAreaNameChanged();
|
||||
partial void OnAuditTimeChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnAuditTimeChanged();
|
||||
partial void OnAuditManChanging(string value);
|
||||
partial void OnAuditManChanged();
|
||||
#endregion
|
||||
|
||||
public Inspect_InspectionItem()
|
||||
@@ -229325,22 +229369,22 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InspectionItemCode", DbType="NVarChar(50)")]
|
||||
public string InspectionItemCode
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProblemDetial", DbType="NVarChar(1000)")]
|
||||
public string ProblemDetial
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._InspectionItemCode;
|
||||
return this._ProblemDetial;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._InspectionItemCode != value))
|
||||
if ((this._ProblemDetial != value))
|
||||
{
|
||||
this.OnInspectionItemCodeChanging(value);
|
||||
this.OnProblemDetialChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._InspectionItemCode = value;
|
||||
this.SendPropertyChanged("InspectionItemCode");
|
||||
this.OnInspectionItemCodeChanged();
|
||||
this._ProblemDetial = value;
|
||||
this.SendPropertyChanged("ProblemDetial");
|
||||
this.OnProblemDetialChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -229369,62 +229413,42 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InspectionDescribe", DbType="NVarChar(1000)")]
|
||||
public string InspectionDescribe
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProblemTypeId", DbType="NVarChar(1000)")]
|
||||
public string ProblemTypeId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._InspectionDescribe;
|
||||
return this._ProblemTypeId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._InspectionDescribe != value))
|
||||
if ((this._ProblemTypeId != value))
|
||||
{
|
||||
this.OnInspectionDescribeChanging(value);
|
||||
this.OnProblemTypeIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._InspectionDescribe = value;
|
||||
this.SendPropertyChanged("InspectionDescribe");
|
||||
this.OnInspectionDescribeChanged();
|
||||
this._ProblemTypeId = value;
|
||||
this.SendPropertyChanged("ProblemTypeId");
|
||||
this.OnProblemTypeIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PhotoUrl", DbType="NVarChar(1000)")]
|
||||
public string PhotoUrl
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_BeforelUrl", DbType="NVarChar(1000)")]
|
||||
public string BeforelUrl
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._PhotoUrl;
|
||||
return this._BeforelUrl;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._PhotoUrl != value))
|
||||
if ((this._BeforelUrl != value))
|
||||
{
|
||||
this.OnPhotoUrlChanging(value);
|
||||
this.OnBeforelUrlChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._PhotoUrl = value;
|
||||
this.SendPropertyChanged("PhotoUrl");
|
||||
this.OnPhotoUrlChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_VideoUrl", DbType="NVarChar(1000)")]
|
||||
public string VideoUrl
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._VideoUrl;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._VideoUrl != value))
|
||||
{
|
||||
this.OnVideoUrlChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._VideoUrl = value;
|
||||
this.SendPropertyChanged("VideoUrl");
|
||||
this.OnVideoUrlChanged();
|
||||
this._BeforelUrl = value;
|
||||
this.SendPropertyChanged("BeforelUrl");
|
||||
this.OnBeforelUrlChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -229509,7 +229533,7 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_States", DbType="NVarChar(100)")]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_States", DbType="Char(1)")]
|
||||
public string States
|
||||
{
|
||||
get
|
||||
@@ -229529,22 +229553,22 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CompileMan", DbType="NVarChar(50)")]
|
||||
public string CompileMan
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CreateMan", DbType="NVarChar(50)")]
|
||||
public string CreateMan
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._CompileMan;
|
||||
return this._CreateMan;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._CompileMan != value))
|
||||
if ((this._CreateMan != value))
|
||||
{
|
||||
this.OnCompileManChanging(value);
|
||||
this.OnCreateManChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._CompileMan = value;
|
||||
this.SendPropertyChanged("CompileMan");
|
||||
this.OnCompileManChanged();
|
||||
this._CreateMan = value;
|
||||
this.SendPropertyChanged("CreateMan");
|
||||
this.OnCreateManChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -229569,45 +229593,147 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_RectificationPhotoUrl", DbType="NVarChar(1000)")]
|
||||
public string RectificationPhotoUrl
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AfterUrl", DbType="NVarChar(1000)")]
|
||||
public string AfterUrl
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._RectificationPhotoUrl;
|
||||
return this._AfterUrl;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._RectificationPhotoUrl != value))
|
||||
if ((this._AfterUrl != value))
|
||||
{
|
||||
this.OnRectificationPhotoUrlChanging(value);
|
||||
this.OnAfterUrlChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._RectificationPhotoUrl = value;
|
||||
this.SendPropertyChanged("RectificationPhotoUrl");
|
||||
this.OnRectificationPhotoUrlChanged();
|
||||
this._AfterUrl = value;
|
||||
this.SendPropertyChanged("AfterUrl");
|
||||
this.OnAfterUrlChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage = "_RectificationVideoUrl", DbType = "NVarChar(1000)")]
|
||||
public string RectificationVideoUrl
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._RectificationVideoUrl;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._RectificationVideoUrl != value))
|
||||
{
|
||||
this.OnRectificationPhotoUrlChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._RectificationVideoUrl = value;
|
||||
this.SendPropertyChanged("RectificationVideoUrl");
|
||||
this.OnRectificationPhotoUrlChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Inspect_InspectionItem_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ResponsiblePersonId", DbType="NVarChar(50)")]
|
||||
public string ResponsiblePersonId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ResponsiblePersonId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ResponsiblePersonId != value))
|
||||
{
|
||||
this.OnResponsiblePersonIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._ResponsiblePersonId = value;
|
||||
this.SendPropertyChanged("ResponsiblePersonId");
|
||||
this.OnResponsiblePersonIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_RectificationDate", DbType="DateTime")]
|
||||
public System.Nullable<System.DateTime> RectificationDate
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._RectificationDate;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._RectificationDate != value))
|
||||
{
|
||||
this.OnRectificationDateChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._RectificationDate = value;
|
||||
this.SendPropertyChanged("RectificationDate");
|
||||
this.OnRectificationDateChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Level", DbType="NVarChar(50)")]
|
||||
public string Level
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Level;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Level != value))
|
||||
{
|
||||
this.OnLevelChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._Level = value;
|
||||
this.SendPropertyChanged("Level");
|
||||
this.OnLevelChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkAreaName", DbType="VarChar(255)")]
|
||||
public string WorkAreaName
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._WorkAreaName;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._WorkAreaName != value))
|
||||
{
|
||||
this.OnWorkAreaNameChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._WorkAreaName = value;
|
||||
this.SendPropertyChanged("WorkAreaName");
|
||||
this.OnWorkAreaNameChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AuditTime", DbType="DateTime")]
|
||||
public System.Nullable<System.DateTime> AuditTime
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._AuditTime;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._AuditTime != value))
|
||||
{
|
||||
this.OnAuditTimeChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._AuditTime = value;
|
||||
this.SendPropertyChanged("AuditTime");
|
||||
this.OnAuditTimeChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AuditMan", DbType="VarChar(255)")]
|
||||
public string AuditMan
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._AuditMan;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._AuditMan != value))
|
||||
{
|
||||
this.OnAuditManChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._AuditMan = value;
|
||||
this.SendPropertyChanged("AuditMan");
|
||||
this.OnAuditManChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Inspect_InspectionItem_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
|
||||
public Base_Project Base_Project
|
||||
{
|
||||
get
|
||||
@@ -456807,6 +456933,8 @@ namespace Model
|
||||
|
||||
private string _Major;
|
||||
|
||||
private string _DrawingId;
|
||||
|
||||
private string _Part;
|
||||
|
||||
private string _ProjectContent;
|
||||
@@ -456935,7 +457063,23 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Part", DbType="NVarChar(50)")]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DrawingId", DbType="NVarChar(50)")]
|
||||
public string DrawingId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._DrawingId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._DrawingId != value))
|
||||
{
|
||||
this._DrawingId = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Part", DbType="NVarChar(100)")]
|
||||
public string Part
|
||||
{
|
||||
get
|
||||
@@ -457781,6 +457925,8 @@ namespace Model
|
||||
|
||||
private string _WorkTeamId;
|
||||
|
||||
private string _Major;
|
||||
|
||||
public View_QuantityManagement_WorkTeamStatistics()
|
||||
{
|
||||
}
|
||||
@@ -457912,6 +458058,22 @@ namespace Model
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Major", DbType="NVarChar(30)")]
|
||||
public string Major
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Major;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Major != value))
|
||||
{
|
||||
this._Major = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.View_Question_QuestionDBItem")]
|
||||
|
||||
Reference in New Issue
Block a user