36 lines
788 B
C#
36 lines
788 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace CRM.Core.Model.EntityFB
|
|
{
|
|
public class ORD_SALEMEMO
|
|
{
|
|
[Key]
|
|
public decimal MEMOID { get; set; }
|
|
|
|
public decimal? INNERUSERID { get; set; }
|
|
|
|
public decimal? MEMOCONTENTID { get; set; }
|
|
|
|
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; }
|
|
public string COID { get; set; }
|
|
|
|
}
|
|
}
|