Merge branch 'master' of git.kingsome.cn:node/corgi

This commit is contained in:
zhl 2021-05-13 19:16:16 +08:00
commit f29bcf5e00
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;