using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Model
{
public class EprojectItem
{
///
/// 项目号
///
public string JobCode
{
get;
set;
}
///
/// PM
///
public string PM
{
get;
set;
}
///
/// CM
///
public string CM
{
get;
set;
}
///
/// 项目状态
///
public string JobStatus
{
get;
set;
}
///
/// 项目Account
///
public string Account
{
get;
set;
}
///
/// 项目标题
///
public string JobTitle
{
get;
set;
}
}
}