24 lines
614 B
C#
24 lines
614 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Hg.Core.Entity
|
|
{
|
|
[Table("csvr_message")]
|
|
public class CsvrMessage
|
|
{
|
|
[Key]
|
|
public int Id { get; set; }
|
|
public int 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; }
|
|
}
|
|
}
|