using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
public class ProblemNoticeDetailInput
{
///
/// 主键id
///
public string ProNoticeCId { get; set; }
///
/// 整改情况
///
public string ReSituation { get; set; }
///
/// 整改后图片
///
public string ImageUrlAfter { get; set; }
}
}