using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace CallCenterApi.Interface.Models.Input { public class CustomerBaseNewInput { /// /// 自增ID /// public int F_CustomerId { set; get; } /// /// 客户编号 /// public string F_CustomerCode { set; get; } /// /// 公司名称 /// public string F_CompanyName { set; get; } /// /// 关键字 /// public string F_KeyWords { set; get; } /// /// 公司地址 /// public string F_CompanyAddress { set; get; } /// /// 注册地址 /// public string F_RegisteredAddress { set; get; } /// /// 法人姓名 /// public string F_LegalName { set; get; } /// /// 法人身份证 /// public string F_LegalIDCards { set; get; } /// /// 法人电话 /// public string F_LegalTel { set; get; } /// /// 所属行业 KHSSHY /// public string F_SubTrade { set; get; } /// /// 税务类别 SWLB /// public string F_TaxCategory { set; get; } /// /// 税点描述 /// public string F_TaxPointDes { set; get; } /// /// 开票范围 /// public string F_InvoiceRange { set; get; } /// /// 企业资质荣誉 /// public string F_Qualification { set; get; } /// /// 客户信誉等级 KHLayer /// public string F_Layer { set; get; } /// /// 客户归属部门 /// public int? F_BeDept { set; get; } /// /// 客户公司财务负责人 /// public string F_FinancialManager { set; get; } /// /// 客户归属业务负责人 /// public string F_BusinessOwner { set; get; } /// /// 客户归属涉税会计 /// public string F_BeRelatedAcc { set; get; } /// /// 客户归属审核会计 /// public string F_BeAuditAcc { set; get; } /// /// 客户归属做账会计 /// public string F_BeMakeAcc { set; get; } /// /// 微信登录密码 /// public string F_WxPassword { set; get; } /// /// 微信openid /// public string F_WxOpenId { set; get; } /// /// 备注1 /// public string F_Remark1 { set; get; } /// /// 备注2 /// public string F_Remark2 { set; get; } /// /// 备注3 /// public string F_Remark3 { set; get; } /// /// 客服 /// public string F_CusService { set; get; } /// /// 交接日期 /// public string F_HandoverDate { set; get; } /// /// 是否需要去银行拿回单(一般纳税人) /// public int? F_ISBankSlips { set; get; } /// /// 联系地址 /// public string F_Address { set; get; } /// /// 联系地址1 /// public string F_Address1 { set; get; } /// /// 联系地址2 /// public string F_Address2 { set; get; } /// /// 联系地址3 /// public string F_Address3 { set; get; } /// /// 联系地址4 /// public string F_Address4 { set; get; } /// /// 公司logo /// public string F_CompanyLogo { set; get; } /// /// 服务周期-开始时间 /// public DateTime? F_CycleStart { set; get; } /// /// 服务周期-结束时间 /// public DateTime? F_CycleEnd { set; get; } /// /// 收费类型:1月度,2季度,3年度 /// public int? F_ChargeType { set; get; } /// /// 收费 /// public string F_Charges { set; get; } /// /// 公司税号 /// public string F_TaxNumber { set; get; } /// /// 代理费到期日期 /// public DateTime? F_FeeExpires { set; get; } /// /// 联系人添加 /// public List ContactList { set; get; } /// /// 财税情况 /// public CustomerFinanceInput FinanceInfos { set; get; } } /// /// 联系人 /// public class ContactPersonNewInput { public int F_ManId { set; get; } /// /// 客户id /// public int F_CustomerId { set; get; } /// /// 是否主要联系人 /// public bool F_IsMain { set; get; } /// /// 联系人姓名 /// public string F_Name { set; get; } /// /// 电话 /// public string F_Telephone { set; get; } /// /// 邮箱 /// public string F_Email { set; get; } /// /// 职务 /// public string F_Duties { set; get; } /// /// QQ号码 /// public string F_QQ { set; get; } /// /// MSN号码 /// public string F_MSN { set; get; } /// /// 备注 /// public string F_Remark { set; get; } } public class CustomerFinanceInput { /// /// 自增ID /// public int F_CusFinId { get; set; } /// /// 客户ID /// public int? F_CustomerId { get; set; } /// /// 客户编号 /// public string F_CustomerCode { get; set; } /// /// 本月财税情况 /// public string F_MonthState { get; set; } /// /// 本年收入(元) /// public string F_AnnualIncome { get; set; } /// /// 本年利润 /// public string F_AnnualProfit { get; set; } /// /// 本年费用 /// public string F_AnnualCost { get; set; } /// /// 本年人数 /// public string F_AnnualPersonCount { get; set; } /// /// 本年工资 /// public string F_AnnualWages { get; set; } /// /// 本季费用 /// public string F_QuarterlyCost { get; set; } /// /// 本季人数 /// public string F_QuarterlyPersonCount { get; set; } /// /// 本季工资 /// public string F_QuarterlyWages { get; set; } /// /// 本季收入 /// public string F_QuarterlyIncome { get; set; } /// /// 本季应交税额-增值税 /// public string F_QPVAT { get; set; } /// /// 本季应交税额-附加税 /// public string F_QPSurtax { get; set; } /// /// 本季应交税额-企业所得税 /// public string F_QPTaxes { get; set; } /// /// 本季应交税额-文化事业建设税 /// public string F_QPConTax { get; set; } /// /// 本季应交税额-个税 /// public string F_QPPerinTax { get; set; } /// /// 本季应交税额-印花税 /// public string F_QPStampTax { get; set; } /// /// 本季应交税额-其他税额 /// public string F_QPOtherTax { get; set; } /// /// 扩展字段1 /// public string F_Extend1 { get; set; } /// /// 扩展字段2 /// public string F_Extend2 { get; set; } /// /// 扩展字段3 /// public string F_Extend3 { get; set; } /// /// 扩展字段4 /// public string F_Extend4 { get; set; } /// /// 扩展字段5 /// public string F_Extend5 { get; set; } /// /// 备注1 /// public string F_Remark1 { get; set; } /// /// 备注2 /// public string F_Remark2 { get; set; } /// /// 备注3 /// public string F_Remark3 { get; set; } /// /// 创建人工号 /// public string F_CreateBy { get; set; } /// /// 创建时间 /// public DateTime? F_CreatedOn { get; set; } /// /// 删除标志 /// public int? F_DeleteFlag { get; set; } } }