ComplianceServer/oldcode/Model/Entity/WX_INNERUSERJOBNUM.cs

37 lines
852 B
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.WX_INNERUSERJOBNUM")]
public partial class WX_INNERUSERJOBNUM
{
[Key]
public decimal PKID { get; set; }
public decimal? INNERUSERID { get; set; }
[Required]
[StringLength(50)]
public string WXUSERNAME { get; set; }
[StringLength(50)]
public string WXNUMBER { get; set; }
public DateTime? CTIME { get; set; }
/// <summary>
/// ¿ªÊ¼ÈÕÆÚ
/// </summary>
[StringLength(20)]
public string STARTDATE { get; set; }
/// <summary>
/// ½áÊøÈÕÆÚ
/// </summary>
[StringLength(20)]
public string ENDDATE { get; set; }
}
}