using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Entities.Customer { [SugarTable("Crm_ClientDataAndUser")] public class Crm_ClientDataAndUser: EntityBase { /// /// 用户id /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int usersId { get; set; } /// /// 新客户资源表id /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int NewClientDataId { get; set; } } }