using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Model
{
public class FCLItem
{
///
/// Id
///
public string id
{
get;
set;
}
///
/// 创建人
///
public string createBy
{
get;
set;
}
///
/// 创建时间
///
public DateTime? createTime
{
get;
set;
}
///
/// 更新人
///
public string updateBy
{
get;
set;
}
///
/// 更新时间
///
public DateTime? updateTime
{
get;
set;
}
///
/// FO编码
///
public string foNo // 对应
{
get;
set;
}
///
/// FO准则
///
public string disciplineFo // 对应专业
{
get;
set;
}
///
/// 类型
///
public string type
{
get;
set;
}
///
/// 定价方案
///
public string pricingScheme
{
get;
set;
}
///
/// 承包商
///
public string contractor
{
get;
set;
}
///
/// 承包商编码
///
public string vendoNo
{
get;
set;
}
///
/// 项目号
///
public string item
{
get;
set;
}
///
/// 学科类别
///
public string disciplineCategory
{
get;
set;
}
///
/// 货币
///
public string currency
{
get;
set;
}
///
/// 材料组
///
public string materialGroup
{
get;
set;
}
///
/// 采购组
///
public string purchaseGroup
{
get;
set;
}
///
/// 成本要素
///
public string costElement
{
get;
set;
}
///
/// 服务类型
///
public string serviceType
{
get;
set;
}
///
/// 合同管理
///
public string contractAdmin
{
get;
set;
}
///
/// 成本检查
///
public string costChecker
{
get;
set;
}
///
/// 买家
///
public string buyer
{
get;
set;
}
///
/// 主要协调人
///
public string mainCoordinator
{
get;
set;
}
///
/// mc部门
///
public string mcDept
{
get;
set;
}
///
/// 用户代表
///
public string userRepresentative
{
get;
set;
}
///
/// 有效日期
///
public DateTime? validateDate
{
get;
set;
}
///
/// 截止日期
///
public DateTime? expireDate
{
get;
set;
}
///
/// FC状态
///
public string fcStatus
{
get;
set;
}
///
/// 联系人
///
public string contractPerson
{
get;
set;
}
///
/// 联系方式
///
public string tel
{
get;
set;
}
///
/// 体积分配
///
public string volumeAllocation
{
get;
set;
}
///
/// 合同预算
///
public decimal? contractBudget
{
get;
set;
}
///
/// 关联交易
///
public string affiliatedTransaction
{
get;
set;
}
///
/// 检查值
///
public decimal? checkedValue
{
get;
set;
}
///
/// 剩余的预算
///
public decimal? remainingBudget
{
get;
set;
}
///
/// 剩余的预算百分比
///
public string remainingBudgetP
{
get;
set;
}
///
/// 剩余的时间百分比
///
public string remainingDurationP
{
get;
set;
}
///
/// 主要负责人
///
public string zyhead
{
get;
set;
}
///
/// 主要负责人联系方式
///
public string zyheadTel
{
get;
set;
}
///
/// 安全负责人
///
public string aqhead
{
get;
set;
}
///
/// 安全负责人联系方式
///
public string aqheadTel
{
get;
set;
}
///
/// 项目经理
///
public string xmjl
{
get;
set;
}
///
/// 项目经理联系方式
///
public string xmjlTel
{
get;
set;
}
///
/// 电子邮件
///
public string email
{
get;
set;
}
///
/// 施工记录
///
public string constRecords
{
get;
set;
}
///
/// 评论
///
public string remark
{
get;
set;
}
///
/// 超时期限
///
public int? exceedLimit
{
get;
set;
}
}
}