using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// SupplierAssetResponse Data Structure. /// [Serializable] public class SupplierAssetResponse : AopObject { /// /// 审核备注 /// [XmlElement("approval_remark")] public string ApprovalRemark { get; set; } /// /// 审核状态 /// [XmlElement("approval_status")] public string ApprovalStatus { get; set; } /// /// 审核状态文案 /// [XmlElement("approval_status_text")] public string ApprovalStatusText { get; set; } /// /// 是否支持蓝牙 /// [XmlElement("bluetooth_mode")] public string BluetoothMode { get; set; } /// /// bluetooth mode文案 /// [XmlElement("bluetooth_mode_text")] public string BluetoothModeText { get; set; } /// /// 联系地址 /// [XmlElement("contact_address")] public string ContactAddress { get; set; } /// /// 联系电话 /// [XmlElement("contact_mobile")] public string ContactMobile { get; set; } /// /// 联系人 /// [XmlElement("contact_name")] public string ContactName { get; set; } /// /// 设备CPU /// [XmlElement("cpu")] public string Cpu { get; set; } /// /// 产品设计图片 /// [XmlElement("device_design_img")] public string DeviceDesignImg { get; set; } /// /// 产品设计图id /// [XmlElement("device_design_img_id")] public string DeviceDesignImgId { get; set; } /// /// 产品图片 /// [XmlElement("device_img")] public string DeviceImg { get; set; } /// /// 产品图片id /// [XmlElement("device_img_id")] public string DeviceImgId { get; set; } /// /// 设备名称 /// [XmlElement("device_name")] public string DeviceName { get; set; } /// /// 设备其他说明 /// [XmlElement("device_other_desc")] public string DeviceOtherDesc { get; set; } /// /// 人脸摄像头 /// [XmlElement("face_camera")] public string FaceCamera { get; set; } /// /// 创建时间 /// [XmlElement("gmt_create")] public string GmtCreate { get; set; } /// /// 最后修改时间 /// [XmlElement("gmt_modified")] public string GmtModified { get; set; } /// /// 记录主键id /// [XmlElement("id")] public long Id { get; set; } /// /// 物料id(蚂蚁设备id) /// [XmlElement("item_id")] public string ItemId { get; set; } /// /// 是否支持有线网络 /// [XmlElement("line_network_mode")] public string LineNetworkMode { get; set; } /// /// line network mode文案 /// [XmlElement("line_network_mode_text")] public string LineNetworkModeText { get; set; } /// /// 设备内存 /// [XmlElement("memory")] public string Memory { get; set; } /// /// 最低系统版本 /// [XmlElement("min_os_version")] public string MinOsVersion { get; set; } /// /// 设备型号 /// [XmlElement("model_number")] public string ModelNumber { get; set; } /// /// 是否支持移动网络 /// [XmlElement("network_mode")] public string NetworkMode { get; set; } /// /// network mode文案 /// [XmlElement("network_mode_text")] public string NetworkModeText { get; set; } /// /// 操作系统 /// [XmlElement("os_type")] public string OsType { get; set; } /// /// 是否支持打印机 /// [XmlElement("printer")] public string Printer { get; set; } /// /// ram大小 /// [XmlElement("ram")] public long Ram { get; set; } /// /// rom大小 /// [XmlElement("rom")] public long Rom { get; set; } /// /// 扫码方式 /// [XmlElement("scan_code_mode")] public string ScanCodeMode { get; set; } /// /// 扫码距离 /// [XmlElement("scan_code_read_dista")] public string ScanCodeReadDista { get; set; } /// /// 显示屏分辨率 /// [XmlElement("screen_dpi")] public string ScreenDpi { get; set; } /// /// 屏幕尺寸 /// [XmlElement("screen_size")] public string ScreenSize { get; set; } /// /// sdk自动打包文件下载地址 /// [XmlElement("sdk_auto_file")] public string SdkAutoFile { get; set; } /// /// sdk文件id /// [XmlElement("sdk_auto_file_id")] public string SdkAutoFileId { get; set; } /// /// sdk名称 /// [XmlElement("sdk_name")] public string SdkName { get; set; } /// /// sdk版本号 /// [XmlElement("sdk_version")] public string SdkVersion { get; set; } /// /// 设备存储 /// [XmlElement("storage")] public string Storage { get; set; } /// /// 供应商名称 /// [XmlElement("supplier_name")] public string SupplierName { get; set; } /// /// 供应商pid /// [XmlElement("supplier_pid")] public string SupplierPid { get; set; } /// /// 供应商sn /// [XmlElement("supplier_sn")] public string SupplierSn { get; set; } /// /// 设备交易模式,ONE/ZERO /// [XmlElement("tranaction_model")] public string TranactionModel { get; set; } /// /// tranaction model文案 /// [XmlElement("tranaction_model_text")] public string TranactionModelText { get; set; } /// /// 是否支持wifi /// [XmlElement("wifi_mode")] public string WifiMode { get; set; } /// /// wifi mode文案 /// [XmlElement("wifi_mode_text")] public string WifiModeText { get; set; } } }