28 lines
793 B
C#
28 lines
793 B
C#
using System;
|
||
using System.ComponentModel.DataAnnotations;
|
||
using System.ComponentModel.DataAnnotations.Schema;
|
||
|
||
namespace WX.CRM.Model.Entity
|
||
{
|
||
|
||
[Table("UPDEV.SOFT_USERINFO_SUB")]
|
||
public class SOFT_USERINFO_SUB
|
||
{
|
||
/// <summary>
|
||
/// 用户中uid字段(注:oracle不允许uid字段)
|
||
/// </summary>
|
||
[Key]
|
||
public decimal USID { get; set; }
|
||
public decimal CID { get; set; }
|
||
public string APPID { get; set; }
|
||
public string APPUSERID { get; set; }
|
||
public string MOBILE { get; set; }
|
||
public string UNIONID { get; set; }
|
||
public decimal CH { get; set; }
|
||
public string TYPE { get; set; }
|
||
public DateTime? CTIME { get; set; }
|
||
public DateTime? UTIME { get; set; }
|
||
|
||
}
|
||
}
|