关键事项优化;进度管理,月计划统计调整

This commit is contained in:
2025-03-14 20:12:23 +08:00
parent 8a7efa5b3a
commit fcab29b4fb
14 changed files with 335 additions and 137 deletions
+27 -3
View File
@@ -158378,6 +158378,8 @@ namespace Model
private string _FilePath;
private string _ProgressStatus;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
@@ -158396,6 +158398,8 @@ namespace Model
partial void OnSortChanged();
partial void OnFilePathChanging(string value);
partial void OnFilePathChanged();
partial void OnProgressStatusChanging(string value);
partial void OnProgressStatusChanged();
#endregion
public GJSX_detail()
@@ -158543,6 +158547,26 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProgressStatus", DbType="Char(1)")]
public string ProgressStatus
{
get
{
return this._ProgressStatus;
}
set
{
if ((this._ProgressStatus != value))
{
this.OnProgressStatusChanging(value);
this.SendPropertyChanging();
this._ProgressStatus = value;
this.SendPropertyChanged("ProgressStatus");
this.OnProgressStatusChanged();
}
}
}
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;
@@ -217348,7 +217372,7 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InterFaceName", DbType="NChar(10)")]
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InterFaceName", DbType="NVarChar(500)")]
public string InterFaceName
{
get
@@ -217388,7 +217412,7 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InterFaceMehtod", DbType="NChar(10)")]
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InterFaceMehtod", DbType="NVarChar(200)")]
public string InterFaceMehtod
{
get
@@ -218096,7 +218120,7 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Frequency", DbType="NChar(10)")]
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Frequency", DbType="NVarChar(50)")]
public string Frequency
{
get