ComplianceServer/oldcode/Model/Entity/WX_COMPLAINTATTENDANCE.cs

18 lines
469 B
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace WX.CRM.Model.Entity
{
[Table("UPDEV.WX_COMPLAINTATTENDANCE")]
public class WX_COMPLAINTATTENDANCE
{
[Key]
public decimal PKID { get; set; }
public DateTime MONTH { get; set; }
public decimal TYPE { get; set; }
public decimal EID { get; set; }
public decimal VAL { get; set; }
}
}