平安校园
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

пре 2 месеци
12345678910111213141516171819202122232425262728293031323334353637
  1. 
  2. //
  3. namespace SafeCampus.Core.Entity.System;
  4. /// <summary>
  5. /// C端用户关系
  6. /// </summary>
  7. [SugarTable("client_relation", TableDescription = "关系")]
  8. [Tenant(SqlSugarConst.DB_DEFAULT)]
  9. public class ClientRelation : PrimaryKeyEntity
  10. {
  11. /// <summary>
  12. /// 对象ID
  13. ///</summary>
  14. [SugarColumn(ColumnName = "ObjectId", ColumnDescription = "对象ID", IsNullable = false)]
  15. public long ObjectId { get; set; }
  16. /// <summary>
  17. /// 目标ID
  18. ///</summary>
  19. [SugarColumn(ColumnName = "TargetId", ColumnDescription = "目标ID", IsNullable = true)]
  20. public string TargetId { get; set; }
  21. /// <summary>
  22. /// 分类
  23. ///</summary>
  24. [SugarColumn(ColumnName = "Category", ColumnDescription = "分类", Length = 200, IsNullable = true)]
  25. public string Category { get; set; }
  26. }