using MadRunFabric.Model.WorkOrderApi;
using System;
using System.Collections.Generic;
using System.Text;
namespace WorkOrderApi.Model.Dto
{
public class Cus_Customer_BaseDto
{
///
/// id
///
public string id { get; set; }
//------------------档案用户---------------------------------
///
/// 联系人
///
public string name { get; set; }
///
/// 手机号码
///
public string mobilephone { get; set; }
///
/// 固话号码
///
public string telephone { get; set; }
///
/// 转接经理
///
public string manager { get; set; }
///
/// 是否是黑名单
///
public int isblack { get; set; } = 0;
///
/// 是否是标记客户
///
public int iscustomer { get; set; } = 0;
//------------------单位---------------------------------
///
/// 客户名称
///
public string customername { get; set; }
///
/// 单位名称
///
public string companyame { get; set; }
///
/// 省code
///
public string province { get; set; }
///
/// 省
///
public string provincename { get; set; }
///
/// 市code
///
public string city { get; set; }
///
/// 市
///
public string cityname { get; set; }
///
/// 地址
///
public string address { get; set; }
//------------------查看权限---------------------------------
///
/// 角色code - 为空或者null时所有角色
///
public string rolecode { get; set; }
///
/// 用户code - 为空或者null时所有坐席用户
///
public string usercode { get; set; }
//------------------自定义字段---------------------------------
///
/// 自定义字段
///
public List customfields { get; set; }
//------------------属性---------------------------------
///
/// 创建时间
///
public DateTime createtime { get; set; } = DateTime.Now;
///
/// 创建人工号
///
public string createuser { get; set; }
///
/// 创建人姓名
///
public string createusername { get; set; }
///
/// 是否删除
///
public int isdelete { get; set; } = 0;
///
/// 删除用户
///
public string deleteuser { get; set; }
///
/// 删除时间
///
public DateTime? deletetime { get; set; }
}
}