27 lines
574 B
C#
27 lines
574 B
C#
namespace CRM.Core.Model.Entity
|
|
{
|
|
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("aq_BAS_INNERUSERSALT")]
|
|
public partial class BAS_INNERUSERSALT
|
|
{
|
|
[Key]
|
|
public int PKID { get; set; }
|
|
|
|
public int INNERUSERID { get; set; }
|
|
|
|
public int EID { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(50)]
|
|
public string PWDSALT { get; set; }
|
|
|
|
public DateTime? CTIME { get; set; }
|
|
|
|
public int? CREATEUSER { get; set; }
|
|
}
|
|
}
|