using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OASystem.Domain.Entities.Groups
{
    /// 
    /// 团组与客户关联表
    /// 
    [SugarTable("Grp_DelegationJoinCustomer")]
    public class Grp_DelegationJoinCustomer:EntityBase
    {
        /// 
        /// 团组表id
        /// 
        [SugarColumn(IsNullable =true,ColumnDataType ="int")]
        public int GrpDCId { get; set; }
        /// 
        ///客户表Id
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "int")]
        public int CrmDCId { get; set; }
    }
}