保存进度!
This commit is contained in:
parent
c2bc64fd36
commit
9afe66b769
@ -2,7 +2,7 @@
|
|||||||
* @Author: Kane
|
* @Author: Kane
|
||||||
* @Date: 2023-02-17 22:35:49
|
* @Date: 2023-02-17 22:35:49
|
||||||
* @LastEditors: Kane
|
* @LastEditors: Kane
|
||||||
* @LastEditTime: 2023-02-18 00:14:08
|
* @LastEditTime: 2023-02-19 14:00:22
|
||||||
* @FilePath: /后端辅助工具/src/DataType/Class.ts
|
* @FilePath: /后端辅助工具/src/DataType/Class.ts
|
||||||
* @Description:
|
* @Description:
|
||||||
*
|
*
|
||||||
@ -10,12 +10,11 @@
|
|||||||
*/
|
*/
|
||||||
class CpicximStuff
|
class CpicximStuff
|
||||||
{
|
{
|
||||||
constructor(name: string, code: string, p13UID: string)
|
constructor(
|
||||||
{
|
private _stuffName: string,
|
||||||
this._stuffName = name;
|
private _stuffCode: string,
|
||||||
this._stuffCode = code;
|
private _p13UID: string
|
||||||
this._p13UID = p13UID;
|
) { }
|
||||||
};
|
|
||||||
|
|
||||||
get stuffName(): string
|
get stuffName(): string
|
||||||
{
|
{
|
||||||
@ -27,9 +26,15 @@ class CpicximStuff
|
|||||||
this._stuffName = stuffName;
|
this._stuffName = stuffName;
|
||||||
}
|
}
|
||||||
|
|
||||||
private _stuffName: string;
|
get stuffCode(): string
|
||||||
private _stuffCode: string;
|
{
|
||||||
private _p13UID: string;
|
return this._stuffCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
set stuffCode(code: string)
|
||||||
|
{
|
||||||
|
this._stuffCode = code;
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
export {CpicximStuff};
|
export { CpicximStuff };
|
Loading…
x
Reference in New Issue
Block a user