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