设备类型

设备类型列表,返回设备中心的所有设备类型列表
    地址:/api/device/typelist
    方法:Post
    权限:我的设备
    参数:{
            Skip:0,                                         // 分页查询Skip
            Take:100                                        // 分页查询Take,小于等于1000
          }
    返回:{
            Success:true,
            total:1
            rows:[{
                    Id: 2,                                  // 设备类型Id
                    Code:"Lamp",                            // 设备类型编码
                    Name:"路灯"                             // 设备类型名称
                }]
            Code:0,                                         // 错误代码
            Message:"返回失败时的错误信息"
          }