团餐订单
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.
 
 

22 lines
479 B

  1. using Furion.DatabaseAccessor;
  2. using SqlSugar;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace OrderService.Core
  9. {
  10. public class BasicEntity
  11. {
  12. [SugarColumn(IsPrimaryKey = true)]
  13. public string Id { get; set; }
  14. public DateTime? CreatedAt { get; set; }
  15. /// <summary>
  16. /// 权限
  17. /// </summary>
  18. public string GroupId { get; set; }
  19. }
  20. }