19 lines
564 B
C#
19 lines
564 B
C#
using System;
|
|
|
|
namespace YLErp.Modules.RiskEngine.Dto
|
|
{
|
|
public class RiskAuditLogListItem
|
|
{
|
|
public long Id { get; set; }
|
|
public string OperationType { get; set; }
|
|
public string TargetType { get; set; }
|
|
public long TargetId { get; set; }
|
|
public string TargetName { get; set; }
|
|
public string TargetCode { get; set; }
|
|
public string OperationDetail { get; set; }
|
|
public string Result { get; set; }
|
|
public string OptName { get; set; }
|
|
public DateTime OptDate { get; set; }
|
|
}
|
|
}
|