MM_36721 : Restructure Entities - Global & System (#5504)

This commit is contained in:
Avinash Lingaloo
2021-07-02 13:08:12 +04:00
committed by GitHub
parent 10bfc9d604
commit 7ff119fdc1
28 changed files with 57 additions and 83 deletions

View File

@@ -11,9 +11,6 @@ export default class Global extends Model {
/** table (name) : global */
static table: string;
/** name : The label/key to use to retrieve the special 'value' */
name: string;
/** value : The value part of the key-value combination */
/** value : The value part of the key-value combination and whose key will be the id column */
value: any;
}

View File

@@ -12,9 +12,6 @@ export default class System extends Model {
/** table (name) : System */
static table: string;
/** name : The name or key value for the config */
name: string;
/** value : The value for that config/information */
/** value : The value for that config/information and whose key will be the id column */
value: any;
}