25 lines
610 B
C#
25 lines
610 B
C#
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; }
|
|
|
|
}
|
|
}
|