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.
 
 

18 lines
449 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_AppIdConfig")]
  11. public class BPA_AppIdConfig: IBaseGroupIdEntity
  12. {
  13. [SugarColumn(ColumnDataType = "varchar(1000)", IsNullable = false)]
  14. public string AppId { get; set; }
  15. }
  16. }