22 lines
625 B
C#
22 lines
625 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
[Table("UPDEV.CSVR_MESSAGE")]
|
|
public class CSVR_MESSAGE
|
|
{
|
|
[Key]
|
|
public decimal ID { get; set; }
|
|
public decimal EID { get; set; }
|
|
public string MSGCODE { get; set; }
|
|
public string MESSAGE { get; set; }
|
|
public DateTime CTIME { get; set; }
|
|
public int ISLOOK { get; set; }
|
|
public DateTime? LOOKTIME { get; set; }
|
|
public string FROMER { get; set; }
|
|
public string PARAM { get; set; }
|
|
}
|
|
}
|