30 lines
756 B
C#
30 lines
756 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.RES_CUSTOMERQW_EID")]
|
|
public partial class RES_CUSTOMERQW_EID
|
|
{
|
|
[Key]
|
|
[StringLength(255)]
|
|
public string RESID { get; set; }
|
|
|
|
//[Required]
|
|
[StringLength(255)]
|
|
public string APPID { get; set; }
|
|
|
|
public DateTime? CTIME { get; set; }
|
|
|
|
[StringLength(255)]
|
|
public string APPUSERID { get; set; }
|
|
public decimal? EID { get; set; }
|
|
public decimal? INNERUSERID { get; set; }
|
|
/// <summary>
|
|
/// ¼ÓºÃÓÑʱ¼ä
|
|
/// </summary>
|
|
public DateTime? UTIME { get; set; }
|
|
}
|
|
}
|