This commit is contained in:
2026-03-26 14:44:30 +08:00
parent 58f23e59d1
commit 3ea6859aa4
8 changed files with 112 additions and 5 deletions
@@ -0,0 +1,24 @@
using Model;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace Model
{
/// <summary>
/// 督查检查驳回整改
/// </summary>
public class DCGLCheckRectifyReject
{
public string UnitId { get; set; }
public string ProjectId { get; set; }
public string CheckRectifyId { get; set; }
public string CheckRectifyItemId { get; set; }
public string NoticeItemId { get; set; }
/// <summary>
/// 驳回描述
/// </summary>
public string Reason { get; set; }
}
}