using System;
|
using System.Collections.Generic;
|
|
#nullable disable
|
|
namespace DTO
|
{
|
public partial class AdmAttendanceRuleDTO
|
{
|
public string Id { get; set; }
|
public string Code { get; set; }
|
public string Name { get; set; }
|
public string Remark { get; set; }
|
public string RecStatus { get; set; }
|
public string Creater { get; set; }
|
public DateTime Createtime { get; set; }
|
public string Modifier { get; set; }
|
public DateTime Modifytime { get; set; }
|
}
|
|
|
/// <summary>
|
/// 明细
|
/// </summary>
|
public partial class AdmAttendanceRulesDtlDTO
|
{
|
|
public string Id { get; set; }
|
public string Pid { get; set; }
|
public string Value1 { get; set; }
|
public string Value2 { get; set; }
|
public string Value3 { get; set; }
|
public string Value4 { get; set; }
|
public string Value5 { get; set; }
|
public string Value6 { get; set; }
|
public string RecStatus { get; set; }
|
}
|
}
|