using System; namespace HDL_ON_Android.Aliyu { public class LogBean { /** * 用户id,非必填 */ private string userId; /** * 住宅id,非必填 */ private string homeId; /** * 网关mac,非必填 */ private string mac; /** * 标题,必须要填 */ private string title; /** * 日志时间 */ private string time; /** * 系统:IOS、Android、Windows、网关 */ private string userAgent; /** * 软件版本 */ private string appVersion; private string type; public string getUserId() { return userId == null ? "" : userId; } public string getHomeId() { return homeId == null ? "" : homeId; } public void setUserId(string userId) { this.userId = userId; } public void setHomeId(string homeId) { this.homeId = homeId; } public string getMac() { return mac; } public void setMac(string mac) { this.mac = mac; } public string getTitle() { return title; } public void setTitle(string title) { this.title = title; } public string getTime() { return time; } public void setTime(string time) { this.time = time; } public string getUserAgent() { return userAgent; } public void setUserAgent(string userAgent) { this.userAgent = userAgent; } public string getAppVersion() { return appVersion; } public void setAppVersion(string appVersion) { this.appVersion = appVersion; } public string getType() { return type; } public void setType(string type) { this.type = type; } } }