| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 | declare namespace Mqtt {  interface Auth {    /** id */    id: number;    /** 字段名 */    client_id: string | null;    mount_point: string | null;    user_name: string | null;    password: string;    pasture_id: number | null;    pasture_name: string | null;    topic_ids: string | null;    access: number | null;    publish_acl: string | null;    subscribe_acl: string | null;    is_show: number | null;    created_at_format: string | null;    updated_at_format: string | null;  }  interface User {    /** id */    id: number;    /** 字段名 */    user_name: string | null;    password: string;    client_id: string | null;    pasture_id: number | null;    topic_ids: string | null;    is_show: number | null;    access: number | null;    created_at_format: string | null;    updated_at_format: string | null;  }  interface Topic {    /** id */    id: number;    category_id: number | null;    category_name: string | null;    /** 字段名 */    topic_name: string | null;    topic_template: string | null;    created_at_format: string | null;    updated_at_format: string | null;    is_show: number | null;  }  interface Pasture {    /** id */    id: number;    /** 字段名 */    name: string | null;    short_name: string | null;    address: string | null;    is_group: number | null;    is_show: number | null;    group_id: number | null;    created_at_format: string | null;    updated_at_format: string | null;  }  interface Category {    /** id */    id: number;    /** 分类名称 */    name: string | null;    is_show: number | null;    created_at_format: string | null;    updated_at_format: string | null;  }}
 |