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