using SqlSugar;
using System;
using System.Collections.Generic;
using System.ComponentModel;
namespace Myshipping.Core.Service
{
///
/// 客户输出参数
///
public class DjyCustomerOutput
{
///
/// 主键
///
public long Id { get; set; }
///
/// 代码
///
public string CodeName { get; set; }
///
/// 简称
///
public string ShortName { get; set; }
///
/// 全称
///
public string FullName { get; set; }
///
/// 负责人
///
public string Chief { get; set; }
///
/// 电话
///
public string Tel { get; set; }
///
/// 邮箱
///
public string Email { get; set; }
///
/// QQ
///
public string QQ { get; set; }
///
/// 网址
///
public string WebUrl { get; set; }
///
/// 省份
///
public string Province { get; set; }
///
/// 城市
///
public string City { get; set; }
///
/// 地址
///
public string Addr { get; set; }
///
/// 英文全名
///
public string FullNameEN { get; set; }
///
/// 英文地址
///
public string AddrEN { get; set; }
///
/// 属性字符串
///
public string PropString { get; set; }
///
/// 发票抬头
///
public string InvTitle { get; set; }
///
/// 纳税人识别号
///
public string TaxNO { get; set; }
///
/// 发票地址电话
///
public string InvAddrTel { get; set; }
///
/// 人民币开户行
///
public string RMBBank { get; set; }
///
/// 人民币账号
///
public string RmbAccount { get; set; }
///
/// 美元开户行
///
public string USDBank { get; set; }
///
/// 美元账号
///
public string USDAccount { get; set; }
///
/// 备注
///
public string Remark { get; set; }
///
/// 操作id
///
public string OPID { get; set; }
///
/// 单证id
///
public string DOCID { get; set; }
///
/// 操作
///
public string OP { get; set; }
///
/// 单证
///
public string DOC { get; set; }
///
/// 销售ID
///
public string SALEID { get; set; }
///
/// 销售
///
public string SALE { get; set; }
///
/// 客服ID
///
public string CUSTSERVICEID { get; set; }
///
/// 客服
///
public string CUSTSERVICE { get; set; }
///
/// 商务id
///
public string BUSINESSID { get; set; }
///
/// 商务
///
public string BUSINESS { get; set; }
///
/// 提单信息
///
public string TIDANINFO { get; set; }
///
/// 服务项目
///
public string ServiceItem { get; set; }
public List Contacts { get; set; }
///
/// 地址列表
///
public List Addrs { get; set; }
///
/// 参数值列表
///
public List ParamValueList { get; set; }
}
public class DjyCustomerParamValueOutput
{
///
/// 参数类别
///
public string ParaCode { get; set; }
///
/// 类别名称
///
public string ParaName { get; set; }
///
/// 业务大类
///
public string ParamType { get; set; }
///
/// 选项代码
///
public string ItemCode { get; set; }
///
/// 选项名称
///
public string ItemName { get; set; }
}
}