12345678910111213141516171819202122232425262728293031323334353637383940 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Dtos.CRM
- {
- public class NewClientDataQueryDto
- {
- /// <summary>
- /// 联系人
- /// </summary>
- public string Contact { get; set; }
- //地区
- public string Location { get; set; }
- //单位
- public string Client { get; set; }
- //负责人
- public int Userid { get; set; }
-
- //省域
- //单独负责的客户 (只看老张的)
- //权重
- public char Weight { get; set; }
- //客户级别(地市州)
- public int Lvlid { get; set; }
- //客户类别
- //业务分类
- public int Business { get; set; }
- }
- }
|