using System; namespace System.Common { /// /// 订单表 /// [Serializable] public partial class UserModel { public UserModel() { } #region Model public string UserId { set; get; } public string UserCode { set; get; } public string UserName { set; get; } public int RoleId { set; get; } public string RoleCode { set; get; } public string WxOpenId { set; get; } #endregion Model } }