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.
 
 

29 lines
900 B

  1. using BPA.KitChen.GroupMeal.Core.Entity.Base;
  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 BPA.KitChen.GroupMeal.Core.Entity
  9. {
  10. [SugarTable("bpa_shop")]
  11. public class ShopEntity: IBaseGroupIdEntity
  12. {
  13. [SugarColumn(ColumnDataType = "varchar(20)", ColumnDescription = "店铺名称", IsNullable = false)]
  14. public string Name { get; set; }
  15. [SugarColumn(ColumnDataType = "varchar(64)", ColumnDescription = "组织", IsNullable = false)]
  16. public string OrgId { get; set; }
  17. [SugarColumn(ColumnDataType = "varchar(20)", ColumnDescription = "电话", IsNullable = false)]
  18. public string Phone { get; set; }
  19. [SugarColumn(ColumnDataType = "int", ColumnDescription = "排序", IsNullable = true)]
  20. public int Sort { get; set; }
  21. }
  22. }