ComplianceServer/oldcode/Model/Entity/RES_RESETRULELOG.cs

17 lines
426 B
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace WX.CRM.Model.Entity
{
[Table("UPDEV.RES_RESETRULELOG")]
public class RES_RESETRULELOG
{
[Key]
public decimal ID { get; set; }
public DateTime RESETTIME { get; set; }
public decimal? ISEXE { get; set; }
public DateTime? EXETIME { get; set; }
}
}