18 lines
476 B
C#
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; }
|
|
}
|
|
}
|