44 lines
1.0 KiB
C#
44 lines
1.0 KiB
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.CACHE_QC_ORDMEMO")]
|
|
public partial class CACHE_QC_ORDMEMO
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
|
|
public decimal? MEMOID { get; set; }
|
|
|
|
public decimal? MTYPEID { get; set; }
|
|
|
|
public decimal? INNERUSERID { get; set; }
|
|
|
|
public decimal? MEMOCONTENTID { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string RESID { get; set; }
|
|
|
|
public decimal? MEMOSTYLEID { get; set; }
|
|
|
|
public decimal? MEMOTYPEID { get; set; }
|
|
|
|
public decimal? MEMOSUBTYPEID { get; set; }
|
|
|
|
public decimal? BUSINESSID { get; set; }
|
|
|
|
public DateTime? CTIME { get; set; }
|
|
|
|
public DateTime? CALLTIME { get; set; }
|
|
|
|
public DateTime? CALLTIMEEND { get; set; }
|
|
|
|
public short? ISCHECKED { get; set; }
|
|
|
|
[StringLength(6)]
|
|
public string DEPTCODE { get; set; }
|
|
}
|
|
}
|