27 lines
532 B
C#
27 lines
532 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Hg.Core.Entity
|
|
{
|
|
[Table("aq_BAS_INNERUSERSALT")]
|
|
public class BAS_INNERUSERSALT
|
|
{
|
|
[Key]
|
|
public int PKID { get; set; }
|
|
|
|
public int INNERUSERID { get; set; }
|
|
|
|
public int EID { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string PWDSALT { get; set; }
|
|
|
|
public DateTime? CTIME { get; set; }
|
|
|
|
public int? CREATEUSER { get; set; }
|
|
}
|
|
}
|