督查检查驳回

This commit is contained in:
geh
2026-03-26 11:05:11 +08:00
parent 03e585144c
commit 9e9100749a
8 changed files with 115 additions and 6 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; }
}
}