using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using MadRunFabric.Common;
namespace WorkOrderApi.Areas.Hy_Order.Input
{
public class CusCustomerProInput
{
///
/// id
///
public string pro_id { get; set; }
///
/// 档案用户id
///
public string pro_customerid { get; set; }
//------------------项目联系人---------------------------------
///
/// 联系人
///
public string pro_name { get; set; }
///
/// 手机号码
///
public string pro_mobilephone { get; set; }
///
/// 固话号码
///
public string pro_telephone { get; set; }
//------------------单位---------------------------------
///
/// 客户名称
///
public string pro_customername { get; set; }
///
/// 单位名称
///
public string pro_companyame { get; set; }
/////
///// 省code
/////
//public string province { get; set; }
/////
///// 市code
/////
//public string city { get; set; }
///
/// 地址
///
public string pro_address { get; set; }
//------------------项目---------------------------------
///
/// 项目名称
///
public string pro_project_name { get; set; }
///
/// 合同签订时间
///
public DateTime pro_ordertime { get; set; }
///
/// 验收日期
///
public DateTime pro_acceptancetime { get; set; }
///
/// 到期日期
///
public DateTime pro_orderendtime { get; set; }
///
/// 质保期
///
public string pro_guarantee_period { get; set; }
///
/// 是否到期
///
public int pro_isend { get; set; }
///
/// 项目金额(万元)
///
public string pro_project_amount { get; set; }
///
/// 项目类型id
///
public string pro_project_typeid { get; set; }
///
/// 设备厂家/中间件
///
public string pro_oem_name { get; set; }
///
/// 授权内容
///
public string pro_content { get; set; }
///
/// 售后服务内容
///
public string pro_servicecontent { get; set; }
//------------------项目负责人信息---------------------------------
///
/// 项目负责人名称
///
public string project_cusname { get; set; }
///
/// 手机号码
///
public string project_mobilephone { get; set; }
///
/// 固话号码
///
public string project_telephone { get; set; }
///
/// 地址
///
public string project_address { get; set; }
//------------------添加潜在客户相关字段---------------------------------
///
/// 客户部门
///
public string customerdept { get; set; }
///
/// 邮箱
///
public string customeremail { get; set; }
///
/// 客户类型:签约客户和潜在客户
///
public string customertype { get; set; }
///
/// 最新跟进时间
///
public DateTime followtime { get; set; }
///
/// 最新跟进内容
///
public string followcontent { get; set; }
///
/// 附件
///
public List attachment { get; set; }
}
}