1234567891011121314151617181920212223242526272829303132333435363738394041 |
- export interface iAccountCreatePayload {
- account: string
- password: string
- name: string
- company: string
- mobile: string
- telephone: string
- accountGroup: string
- }
- export interface iAccountEdit extends accountCreatePayload {
- id: string
- }
- export interface iUserInfo {
- account: string;
- accountGroup: number;
- company: string;
- csrf: string;
- enable: number;
- id: string;
- isAdmin: number;
- mobile: string;
- name: string;
- password: string;
- position: string;
- projectId: string;
- role: string;
- telephone: string;
- }
- export interface iAccountChange {
- id: string
- account: string
- password: string
- }
- export interface iAccountEnable {
- id: string
- enable: string
- }
|