28 lines
648 B
C#
28 lines
648 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.SOFT_JUEJINRES")]
|
|
public partial class SOFT_JUEJINRES
|
|
{
|
|
public decimal ID { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string NAME { get; set; }
|
|
|
|
public decimal? USERID { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string CREATETIME { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string EMAIL { get; set; }
|
|
|
|
[StringLength(20)]
|
|
public string RESID { get; set; }
|
|
|
|
public decimal? VERIFICODE { get; set; }
|
|
}
|
|
}
|