保存进度!

This commit is contained in:
Kane 2023-02-18 00:17:55 +08:00
parent e7e8ec49e2
commit c2bc64fd36
2 changed files with 37 additions and 1 deletions

View File

@ -0,0 +1,35 @@
/*
* @Author: Kane
* @Date: 2023-02-17 22:35:49
* @LastEditors: Kane
* @LastEditTime: 2023-02-18 00:14:08
* @FilePath: //src/DataType/Class.ts
* @Description:
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
*/
class CpicximStuff
{
constructor(name: string, code: string, p13UID: string)
{
this._stuffName = name;
this._stuffCode = code;
this._p13UID = p13UID;
};
get stuffName(): string
{
return this._stuffName;
}
set stuffName(stuffName: string)
{
this._stuffName = stuffName;
}
private _stuffName: string;
private _stuffCode: string;
private _p13UID: string;
};
export {CpicximStuff};

View File

@ -2,7 +2,7 @@
* @Author: Kane * @Author: Kane
* @Date: 2023-02-09 15:24:20 * @Date: 2023-02-09 15:24:20
* @LastEditors: Kane * @LastEditors: Kane
* @LastEditTime: 2023-02-13 23:28:22 * @LastEditTime: 2023-02-17 23:15:11
* @FilePath: //tsconfig.json * @FilePath: //tsconfig.json
* @Description: * @Description:
* *
@ -13,6 +13,7 @@
"outDir": "./target", "outDir": "./target",
"strict": false, "strict": false,
"strictNullChecks": true, "strictNullChecks": true,
"strictPropertyInitialization":true,
"sourceMap": true, "sourceMap": true,
"allowJs": true, "allowJs": true,
"checkJs": false, "checkJs": false,