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