ComplianceServer/oldcode/Model/Entity/WX_COMMUNICATION_DAY.cs

18 lines
476 B
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace WX.CRM.Model.Entity
{
[Table("UPDEV.WX_COMMUNICATION_DAY")]
public class WX_COMMUNICATION_DAY
{
[Key]
public decimal PKID { get; set; }
public string JOBUSERNAME { get; set; }
public string USERNAME { get; set; }
public decimal DAY1 { get; set; }
public DateTime CTIME { get; set; }
}
}