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