32 lines
699 B
C#
32 lines
699 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Hg.Complaint.Domain.Dto
|
|
{
|
|
public class CreateLiveAuditRectificationDto
|
|
{
|
|
/// <summary>
|
|
/// 审核id
|
|
/// </summary>
|
|
public int AuditId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 操作人
|
|
/// </summary>
|
|
public string? Operator { get; set; }
|
|
|
|
/// <summary>
|
|
/// 整改附件
|
|
/// </summary>
|
|
public string? RectificationAccessory { get; set; }
|
|
|
|
/// <summary>
|
|
/// 整改备注
|
|
/// </summary>
|
|
public string? RectificationRemark { get; set; }
|
|
}
|
|
}
|