using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace HZQR.Common { class CommonObject { } #region 对象 -> 服务器对象 /// /// 对象 -> 服务器对象 /// public class ServerPartObject { public string text { get; set; } public string pointX { get; set; } public string pointY { get; set; } public string code { get; set; } } #endregion #region 对象 -> 销售数据对象 /// /// 对象 -> 销售数据对象 /// public class SellDataObject { public string name { get; set; } public string ServerpartName { get; set; } public string commoditycount { get; set; } public string price { get; set; } public string totalprice { get; set; } public string selltime { get; set; } } #endregion #region 对象 -> 图片对象 /// /// 对象 -> 销售数据对象 /// public class ImageObject { public string path { get; set; } public string code { get; set; } } #endregion #region 对象 -> 树对象 /// /// 对象 -> 销售数据对象 /// /// /// 树节点选项类 /// public class TreeItem { //文本 public string name { get; set; } //是否展开 public bool open { get; set; } //TAB 内码 public string id { get; set; } //上级树节点 public string pid { get; set; } //图标 public string icon { get; set; } //Url地址 public string url { get; set; } //对象Tag public string tag { get; set; } // //对象Tag public string itemType { get; set; } } #endregion #region 对象 -> 稽查对象 /// /// 对象 -> 服务器对象 /// public class CheckInfoObject { public string SHOPNAME { get; set; } public string CONNECT_STATE { get; set; } public string CONNECT_DATE { get; set; } public string CURRCOMMCOUNT { get; set; } public string CURRAMOUNT { get; set; } public string CURRSELLCOUNT { get; set; } public string AVERAGE_PRICE { get; set; } public string CURRPRESON { get; set; } public string MACHINENAME { get; set; } public string CONNECT_IP { get; set; } public string CONTENT { get; set; } public string VERSION_NUMBER { get; set; } } #endregion #region 对象 -> 微信对象 /// /// 对象 -> 微信对象 /// public class WechatInfoObject { public string WECHAT_OPENID { get; set; } public string RTWECHATPUSH_ID { get; set; } public string LINE_NUMBER { get; set; } } #endregion }