Grp_DelegationJoinCustomer.cs 696 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace OASystem.Domain.Entities.Groups
  7. {
  8. /// <summary>
  9. /// 团组与客户关联表
  10. /// </summary>
  11. [SugarTable("Grp_DelegationJoinCustomer")]
  12. public class Grp_DelegationJoinCustomer:EntityBase
  13. {
  14. /// <summary>
  15. /// 团组表id
  16. /// </summary>
  17. [SugarColumn(IsNullable =true,ColumnDataType ="int")]
  18. public int GrpDCId { get; set; }
  19. /// <summary>
  20. ///客户表Id
  21. /// </summary>
  22. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  23. public int CrmDCId { get; set; }
  24. }
  25. }