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
509 B

  1. using BPA.KitChen.GroupMeal.Core.Enum;
  2. using Furion;
  3. using SqlSugar;
  4. using System;
  5. namespace BPA.KitChen.GroupMeal.Core.Entity.Base
  6. {
  7. /// <summary>
  8. /// 自定义实体基类
  9. /// </summary>
  10. public abstract class IEntity: IBaseOPEntity
  11. {
  12. /// <summary>
  13. /// 状态
  14. /// </summary>
  15. [SugarColumn(ColumnDataType = "int", ColumnDescription = "状态", IsNullable = false)]
  16. public CommonStatus Status { get; set; } = CommonStatus.ENABLE;
  17. }
  18. }