19 lines
432 B
C#
19 lines
432 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.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; }
|
|
}
|
|
}
|