23 lines
484 B
C#
23 lines
484 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Crm.Core.Entity.Crm
|
|
{
|
|
[Table("ORD_MEMOCONTENT")]
|
|
public class ORD_MEMOCONTENT
|
|
{
|
|
[Key]
|
|
public decimal CONTENTID { get; set; }
|
|
|
|
[StringLength(2000)]
|
|
public string? STRCONTENT { get; set; }
|
|
|
|
public DateTime? CTIME { get; set; }
|
|
|
|
public virtual CACHE_ORD_MEMO? CACHE_ORD_MEMO { get; set; }
|
|
}
|
|
}
|