整理代码!

This commit is contained in:
2023-03-24 15:11:47 +08:00
parent bee1061e20
commit 7dbd48152f
14 changed files with 119 additions and 80 deletions

View File

@@ -34,7 +34,7 @@ class StaffInfo
return this._stuffCode;
}
public set stuffCode(stuffCode: string)
public set stuffCode( stuffCode: string )
{
this._stuffCode = stuffCode;
}
@@ -44,7 +44,7 @@ class StaffInfo
return this._stuffName;
}
public set stuffName(stuffName: string)
public set stuffName( stuffName: string )
{
this._stuffName = stuffName;
}
@@ -54,12 +54,12 @@ class StaffInfo
return this._p13uid;
}
public set P13UID(p13uid: string)
public set P13UID( p13uid: string )
{
this._p13uid = p13uid;
}
public set departmentCode(departmentCode: string)
public set departmentCode( departmentCode: string )
{
this._departmentCode = departmentCode;
}
@@ -69,7 +69,7 @@ class StaffInfo
return this._departmentCode;
}
public set departmentName(departmentName: string)
public set departmentName( departmentName: string )
{
this._departmentName = departmentName;
}