ComplianceServer/oldcode/Model/MAP/QC_ORDMEMO.cs

44 lines
1.1 KiB
C#

using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace WX.CRM.Model.MAP
{
public class QC_ORDMEMO
{
[NotMapped]
public decimal MEMOID { get; set; }
[NotMapped]
public decimal? INNERUSERID { get; set; }
[NotMapped]
public decimal? MEMOCONTENTID { get; set; }
[NotMapped]
public string RESID { get; set; }
[NotMapped]
public decimal? MEMOSTYLEID { get; set; }
[NotMapped]
public decimal? MEMOTYPEID { get; set; }
[NotMapped]
public decimal? MEMOSUBTYPEID { get; set; }
[NotMapped]
public decimal? BUSINESSID { get; set; }
[NotMapped]
public DateTime? CTIME { get; set; }
[NotMapped]
public DateTime? CALLTIME { get; set; }
[NotMapped]
public DateTime? CALLTIMEEND { get; set; }
[NotMapped]
public bool? ISCHECKED { get; set; }
[NotMapped]
public string DEPTCODE { get; set; }
[NotMapped]
public decimal? MTYPEID { get; set; }
[NotMapped]
public string STRCONTENT { get; set; }
}
}