| 1234567891011121314151617181920212223242526272829 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Entities.Customer;
- /// <summary>
- /// 客户资料(新)拜访记录(客户信息回收标准)
- /// </summary>
- [SugarTable("Crm_NewClientVisitRecord", "客户资料(新)拜访记录(客户信息回收标准)")]
- public class Crm_NewClientVisitRecord : EntityBase
- {
- /// <summary>
- /// 客户资料Id
- /// </summary>
- [SugarColumn(ColumnName = "NewClientId", ColumnDescription = "客户资料Id", IsNullable = true, ColumnDataType = "int")]
- public int NewClientId { get; set; }
- /// <summary>
- /// 是否有意向
- /// </summary>
- public bool HasIntention { get; set; }
- /// <summary>近期是否客户维护</summary>
- public bool RecentMaintain { get; set; }
- }
|