34 lines
1000 B
C#
34 lines
1000 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using WX.CRM.Model.Entity;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
[Table("UPDEV.MSGTOOL_TASK_LABDETAIL")]
|
|
public class MsgToolTaskLabDetail
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
[StringLength(50)]
|
|
public string CORPID { get; set; }
|
|
[StringLength(100)]
|
|
public string EXTUSERID { get; set; }
|
|
[StringLength(100)]
|
|
public string NICKNAME { get; set; }
|
|
[StringLength(2500)]
|
|
public string REMARK { get; set; }
|
|
public DateTime? CTIME { get; set; }
|
|
[StringLength(100)]
|
|
public string KFUSERID { get; set; }
|
|
public DateTime? EXETIME { get; set; }
|
|
|
|
public decimal TASKID { get; set; }
|
|
public string KFNICKNAME { get; set; }
|
|
public int? PAGETYPE { get; set; } = 1;
|
|
public string CORPNAME { get; set; }
|
|
|
|
}
|
|
}
|