update dashboard
This commit is contained in:
parent
325020fd37
commit
8228a4f46c
3 changed files with 211 additions and 22 deletions
54
client/src/app/core/models/recipe.model.ts
Normal file
54
client/src/app/core/models/recipe.model.ts
Normal file
|
|
@ -0,0 +1,54 @@
|
|||
export interface Recipe {
|
||||
Description: string;
|
||||
ExtendID: number;
|
||||
OnTOP: boolean;
|
||||
LastChange: Date;
|
||||
MenuStatus: number;
|
||||
RemainingCups: string;
|
||||
StringParam: string;
|
||||
TextForWarningBeforePay: string[];
|
||||
cashPrice: number;
|
||||
changerecipe: string;
|
||||
disable: boolean;
|
||||
disable_by_cup: boolean;
|
||||
disable_by_ice: boolean;
|
||||
EncoderCount: number;
|
||||
id: number;
|
||||
isUse: boolean;
|
||||
isShow: boolean;
|
||||
name: string;
|
||||
nonCashPrice: number;
|
||||
otherDescription: string;
|
||||
otherName: string;
|
||||
productCode: string;
|
||||
recipes: MatRecipe[];
|
||||
SubMenu: Recipe[];
|
||||
ToppingSet: ToppingSet[];
|
||||
total_time: number;
|
||||
total_weight: number;
|
||||
uriData: string;
|
||||
useGram: boolean;
|
||||
weight_float: number;
|
||||
}
|
||||
|
||||
export interface MatRecipe {
|
||||
MixOrder: number;
|
||||
FeedParameter: number;
|
||||
FeedPattern: number;
|
||||
isUse: boolean;
|
||||
materialPathId: number;
|
||||
powderGram: number;
|
||||
powderTime: number;
|
||||
stirTime: number;
|
||||
syrupGram: number;
|
||||
syrupTime: number;
|
||||
waterCold: number;
|
||||
waterYield: number;
|
||||
}
|
||||
|
||||
export interface ToppingSet {
|
||||
ListGroupID: number[];
|
||||
defaultIDSelect: number;
|
||||
groupID: string;
|
||||
isUse: boolean;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue