。。。

This commit is contained in:
Kane 2023-02-19 21:36:12 +08:00
parent c2bc64fd36
commit 81d52412db
2 changed files with 15 additions and 12 deletions

View File

@ -2,7 +2,7 @@
* @Author: Kane * @Author: Kane
* @Date: 2023-02-09 15:26:18 * @Date: 2023-02-09 15:26:18
* @LastEditors: Kane * @LastEditors: Kane
* @LastEditTime: 2023-02-10 10:25:42 * @LastEditTime: 2023-02-18 23:36:07
* @FilePath: /后端辅助工具/.eslintrc.js * @FilePath: /后端辅助工具/.eslintrc.js
* @Description: * @Description:
* *

View File

@ -10,12 +10,19 @@
*/ */
class CpicximStuff class CpicximStuff
{ {
constructor(name: string, code: string, p13UID: string) // constructor(name: string, code: string, p13UID: string)
{ // {
this._stuffName = name; // this._stuffName = name;
this._stuffCode = code; // this._stuffCode = code;
this._p13UID = p13UID; // this._p13UID = p13UID;
}; // };
public constructor(
private _stuffName: string,
private _stuffCode: string,
private p13UID: string
)
{ }
get stuffName(): string get stuffName(): string
{ {
@ -26,10 +33,6 @@ class CpicximStuff
{ {
this._stuffName = stuffName; this._stuffName = stuffName;
} }
private _stuffName: string;
private _stuffCode: string;
private _p13UID: string;
}; };
export {CpicximStuff}; export { CpicximStuff };