23 lines
531 B
C#
23 lines
531 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.CACHE_MEMOID_DELETE")]
|
|
public partial class CACHE_MEMOID_DELETE
|
|
{
|
|
[Key]
|
|
public decimal MEMOID { get; set; }
|
|
|
|
public DateTime? CTIME { get; set; }
|
|
|
|
public decimal? BATCHID { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string RESID { get; set; }
|
|
|
|
public decimal? MEMOCONTENTID { get; set; }
|
|
}
|
|
}
|