You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
274 B
14 lines
274 B
|
8 months ago
|
export type EdgePkgInfoVOModel = {
|
||
|
|
sw_id: string;
|
||
|
|
sw_version: number;
|
||
|
|
sw_name: string;
|
||
|
|
auth_id: string;
|
||
|
|
edPkgSerial: number;
|
||
|
|
archiveType: 0 | 1;
|
||
|
|
execYn: 0 | 1;
|
||
|
|
secretAt: boolean;
|
||
|
|
downloadLocation: string;
|
||
|
|
user_id: string;
|
||
|
|
creation_datetime: string;
|
||
|
|
};
|