ComplianceServer/oldcode/Model/Entity/RES_DEPT_RULE.cs

17 lines
417 B
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace WX.CRM.Model.Entity
{
[Table("UPDEV.RES_DEPT_RULE")]
public class RES_DEPT_RULE
{
[Key]
public decimal DEPTID { get; set; }
public string DEPTNAME { get; set; }
public decimal? RATE { get; set; }
public DateTime CTIME { get; set; }
}
}