|
@@ -0,0 +1,39 @@
|
|
|
+using System;
|
|
|
+using System.Collections.Generic;
|
|
|
+
|
|
|
+namespace MySystem.JavaUserModels
|
|
|
+{
|
|
|
+ public partial class KxsUser
|
|
|
+ {
|
|
|
+ public int Id { get; set; }
|
|
|
+ public DateTime? ToMerchantMakerTime { get; set; }
|
|
|
+ public string Remark { get; set; }
|
|
|
+ public int IsMinWarehouse { get; set; }
|
|
|
+ public int IsMerchantMaker { get; set; }
|
|
|
+ public int Status { get; set; }
|
|
|
+ public int Version { get; set; }
|
|
|
+ public int RealStatus { get; set; }
|
|
|
+ public string HandPwd { get; set; }
|
|
|
+ public string PayPwd { get; set; }
|
|
|
+ public int UserLevel { get; set; }
|
|
|
+ public string Salt { get; set; }
|
|
|
+ public string Avatar { get; set; }
|
|
|
+ public string UserCode { get; set; }
|
|
|
+ public string PidPath { get; set; }
|
|
|
+ public int Pid { get; set; }
|
|
|
+ public string Address { get; set; }
|
|
|
+ public string Phone { get; set; }
|
|
|
+ public string Password { get; set; }
|
|
|
+ public string Username { get; set; }
|
|
|
+ public int HiddenLevel { get; set; }
|
|
|
+ public int DelFlag { get; set; }
|
|
|
+ public DateTime? UpdateTime { get; set; }
|
|
|
+ public DateTime? CreateTime { get; set; }
|
|
|
+ public decimal ThisMonthTrade { get; set; }
|
|
|
+ public string UpdateBy { get; set; }
|
|
|
+ public string CreateBy { get; set; }
|
|
|
+ public DateTime? LogoutTime { get; set; }
|
|
|
+ public decimal ThisMonthTradeSelf { get; set; }
|
|
|
+ public decimal LevelIndex { get; set; }
|
|
|
+ }
|
|
|
+}
|