25 lines
661 B
C#
25 lines
661 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Zxd.Entity.Zxd
|
|
{
|
|
[Table("Soft_Userinfo_Sub")]
|
|
public class Soft_Userinfo_Sub
|
|
{
|
|
[Key]
|
|
public int uid { get; set; }
|
|
public int? cid { get; set; }
|
|
public string appid { get; set; }
|
|
public string appuserid { get; set; }
|
|
public string mobile { get; set; }
|
|
public string unionid { get; set; }
|
|
public int? ch { get; set; }
|
|
public string? type { get; set; }
|
|
public DateTime ctime { get; set; }
|
|
public DateTime utime { get; set; }
|
|
}
|
|
}
|