This commit is contained in:
yuexin 2021-01-15 11:05:07 +08:00
parent b32225740a
commit ec046ae962
3 changed files with 3 additions and 3 deletions

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -4,7 +4,7 @@ export class FormulaCfg implements Cfg{
name: "FormulaCfg"; name: "FormulaCfg";
public id: number; public id: number;
public name: number; public parname: number;
public code: number; public code: number;
public number: number; public number: number;
public numtypeid: number; public numtypeid: number;
@ -13,7 +13,7 @@ export class FormulaCfg implements Cfg{
public decode(data: any) { public decode(data: any) {
this.id = data.id; this.id = data.id;
this.name = data.name; this.parname = data.parname;
this.code = data.code; this.code = data.code;
this.number = data.number; this.number = data.number;
this.numtypeid = data.numtypeid; this.numtypeid = data.numtypeid;