28 lines
1.0 KiB
TypeScript
28 lines
1.0 KiB
TypeScript
//该文件自动生成 不能手动修改参数 所有数值信息以策划的excel表为准
|
|
export default class LDataCannon
|
|
{
|
|
public cannonId:number;//--//cannonID
|
|
public type:number;//--类型
|
|
public bulletsId:number;//--子弹ID
|
|
public cannontips:string;//--文字描述
|
|
public getmode:number;//--获得方式
|
|
public Adget:number;//--看广告获得
|
|
public scoreget:number;//--得分
|
|
public goldlevel:number;//--金币等级
|
|
public shareGet:number;//--分享获得
|
|
public offline:number;//--离线等级
|
|
constructor(cannonId:number,type:number,bulletsId:number,cannontips:string,getmode:number,Adget:number,scoreget:number,goldlevel:number,shareGet:number,offline:number)
|
|
{
|
|
this.cannonId = cannonId;
|
|
this.type = type;
|
|
this.bulletsId = bulletsId;
|
|
this.cannontips = cannontips;
|
|
this.getmode = getmode;
|
|
this.Adget = Adget;
|
|
this.scoreget = scoreget;
|
|
this.goldlevel = goldlevel;
|
|
this.shareGet = shareGet;
|
|
this.offline = offline;
|
|
}
|
|
|
|
}; |