This commit is contained in:
yuexin 2021-05-13 16:56:20 +08:00
parent a56c87eea8
commit 5d586ce214
2 changed files with 3 additions and 1 deletions

File diff suppressed because one or more lines are too long

View File

@ -6,6 +6,7 @@ export class mission_vo implements Cfg{
public id: number;
public number: number;
public typeID: number;
public type: string;
public commonlyadd: number;
public hardadd: number;
public lastdif: number;
@ -21,6 +22,7 @@ export class mission_vo implements Cfg{
this.id = data.id;
this.number = data.number;
this.typeID = data.typeID;
this.type = data.type;
this.commonlyadd = data.commonlyadd;
this.hardadd = data.hardadd;
this.lastdif = data.lastdif;