using System; using WX.CRM.Model.Entity; namespace WX.CRM.IBLL.Res { public interface IRES_RESETRULELOG : IRepository { ResReSetRuleLogView GetReSetTime(); DateTime? GetExeTime(); bool Save(ResReSetRuleLogDto dto); bool Exec(decimal id); bool Exec(int? sid); } public class ResReSetRuleLogView { public decimal? ID { get; set; } public DateTime? RESETTIME { get; set; } public string RESETSHORTDAY { get; set; } public string RESETSHORTTIME { get; set; } } public class ResReSetRuleLogDto { public decimal? ID { get; set; } public string RESETDAY { get; set; } public string RESETTIME { get; set; } } }