19 lines
430 B
C#
19 lines
430 B
C#
namespace CRM.Core.Model.EntityFB
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("ORD_MEMOCONTENT")]
|
|
public partial class ORD_MEMOCONTENT
|
|
{
|
|
[Key]
|
|
public decimal CONTENTID { get; set; }
|
|
|
|
[StringLength(2000)]
|
|
public string STRCONTENT { get; set; }
|
|
|
|
public DateTime? CTIME { get; set; }
|
|
}
|
|
}
|