using System;
|
using System.Collections.Generic;
|
using System.Text;
|
|
namespace DTO
|
{
|
public class ExpertTestTopicpeizhiDTO
|
{
|
public string Id { get; set; }
|
public string ShijianId { get; set; }
|
public string Topictype { get; set; }
|
public string TopictypeName { get; set; }
|
public string Zhishitype { get; set; }
|
public string ZhishitypeName { get; set; }
|
public decimal? Fenshu { get; set; }
|
public string FenshuName { get; set; }
|
public decimal? Fenzhi { get; set; }
|
public string FenzhiName { get; set; }
|
public string RecStatus { get; set; }
|
public string Creater { get; set; }
|
public DateTime Createtime { get; set; }
|
public string Modifier { get; set; }
|
public DateTime Modifytime { get; set; }
|
}
|
}
|