using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace PMS.BusinessModels.Product
{
public class FormProductFunModel
{
///
/// 产品ID
///
public string ProID { get; set; }
///
/// 上级ID
///
public string parentid { get; set; }
///
/// ID
///
public string id { get; set; }
///
/// 编码
///
public string Coding { get; set; }
///
/// 名称
///
public string name { get; set; }
///
/// 开发方式
///
public string DevelopmentModeID { get; set; }
///
/// 开发状态
///
public string DevelopmentStatusID { get; set; }
///
/// 研发人ID
///
public string ResearchPerID { get; set; }
///
/// 研发人
///
public string ResearchPer { get; set; }
///
/// 测试人ID
///
public string TestPerID { get; set; }
///
/// 测试人
///
public string TestPer { get; set; }
///
/// 说明
///
public string remark { get; set; }
///
/// 类型
///
public string ProType { get; set; }
public int? IntType
{
get
{
if (!String.IsNullOrEmpty(ProType))
{
return Convert.ToInt32(ProType);
}
return null;
}
}
}
}