1、小程序质量巡检相关接口调整;
This commit is contained in:
@@ -56366,6 +56366,8 @@ namespace Model
|
||||
|
||||
private string _SaveHandleMan;
|
||||
|
||||
private string _CCManIds;
|
||||
|
||||
private EntityRef<Base_Project> _Base_Project;
|
||||
|
||||
private EntityRef<Sys_User> _Sys_User;
|
||||
@@ -56422,6 +56424,8 @@ namespace Model
|
||||
partial void OnProposeUnitIdChanged();
|
||||
partial void OnSaveHandleManChanging(string value);
|
||||
partial void OnSaveHandleManChanged();
|
||||
partial void OnCCManIdsChanging(string value);
|
||||
partial void OnCCManIdsChanged();
|
||||
#endregion
|
||||
|
||||
public Check_CheckControl()
|
||||
@@ -56900,6 +56904,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CCManIds", DbType="NVarChar(2000)")]
|
||||
public string CCManIds
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._CCManIds;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._CCManIds != value))
|
||||
{
|
||||
this.OnCCManIdsChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._CCManIds = value;
|
||||
this.SendPropertyChanged("CCManIds");
|
||||
this.OnCCManIdsChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Check_CheckControl_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
|
||||
public Base_Project Base_Project
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user