20220601 修改Global调用定时器、修改考勤导入列表及导入方法
This commit is contained in:
@@ -252938,6 +252938,12 @@ namespace Model
|
||||
|
||||
private string _WorkAreaName;
|
||||
|
||||
private string _UnitId;
|
||||
|
||||
private string _UnitName;
|
||||
|
||||
private string _PersonName;
|
||||
|
||||
private EntityRef<Base_Project> _Base_Project;
|
||||
|
||||
private EntityRef<SitePerson_Person> _SitePerson_Person;
|
||||
@@ -252968,6 +252974,12 @@ namespace Model
|
||||
partial void OnPersonIdChanged();
|
||||
partial void OnWorkAreaNameChanging(string value);
|
||||
partial void OnWorkAreaNameChanged();
|
||||
partial void OnUnitIdChanging(string value);
|
||||
partial void OnUnitIdChanged();
|
||||
partial void OnUnitNameChanging(string value);
|
||||
partial void OnUnitNameChanged();
|
||||
partial void OnPersonNameChanging(string value);
|
||||
partial void OnPersonNameChanged();
|
||||
#endregion
|
||||
|
||||
public SitePerson_Checking()
|
||||
@@ -253205,6 +253217,66 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UnitId", DbType="NVarChar(50)")]
|
||||
public string UnitId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._UnitId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._UnitId != value))
|
||||
{
|
||||
this.OnUnitIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._UnitId = value;
|
||||
this.SendPropertyChanged("UnitId");
|
||||
this.OnUnitIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UnitName", DbType="NVarChar(500)")]
|
||||
public string UnitName
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._UnitName;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._UnitName != value))
|
||||
{
|
||||
this.OnUnitNameChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._UnitName = value;
|
||||
this.SendPropertyChanged("UnitName");
|
||||
this.OnUnitNameChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PersonName", DbType="NVarChar(50)")]
|
||||
public string PersonName
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._PersonName;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._PersonName != value))
|
||||
{
|
||||
this.OnPersonNameChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._PersonName = value;
|
||||
this.SendPropertyChanged("PersonName");
|
||||
this.OnPersonNameChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_SitePerson_Checking_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
|
||||
public Base_Project Base_Project
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user