TG.WXCRM.V4/Model/Entity/BAS_INNERUSERSALT.cs

26 lines
587 B
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.BAS_INNERUSERSALT")]
public partial class BAS_INNERUSERSALT
{
[Key]
public decimal PKID { get; set; }
public decimal INNERUSERID { get; set; }
public decimal EID { get; set; }
[Required]
[StringLength(50)]
public string PWDSALT { get; set; }
public DateTime? CTIME { get; set; }
public decimal? CREATEUSER { get; set; }
}
}