24 lines
600 B
C#
24 lines
600 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
|
|
[Table("UPDEV.WW_HHUSER_EID_NOTICE")]
|
|
public class WW_HHUSER_EID_NOTICE
|
|
{
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
public string USERID { get; set; }
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
public decimal? INNERUSERID { get; set; }
|
|
[Key]
|
|
[Column(Order = 3)]
|
|
public decimal? NOTICETYPE { get; set; }
|
|
public DateTime? CTIME { get; set; }
|
|
public DateTime? UTIME { get; set; }
|
|
}
|
|
}
|