24 lines
547 B
C#
24 lines
547 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.QC_MEMOCONTENT")]
|
|
public partial class QC_MEMOCONTENT
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
|
|
public decimal? CONTENTID { get; set; }
|
|
|
|
[StringLength(2000)]
|
|
public string STRCONTENT { get; set; }
|
|
|
|
public DateTime? CTIME { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string DEPTCODE { get; set; }
|
|
}
|
|
}
|