保存进度!
This commit is contained in:
		
							
								
								
									
										35
									
								
								code/ts/后端辅助工具/src/DataType/Class.ts
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										35
									
								
								code/ts/后端辅助工具/src/DataType/Class.ts
									
									
									
									
									
										Normal 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};
 | 
			
		||||
		Reference in New Issue
	
	Block a user