ComplianceServer/oldcode/Model/Entity/SOFT_USERINFO_SUB.cs

28 lines
793 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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; }
}
}