基础服务api
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.
 
 

20 lines
527 B

  1. using BPA.SAAS.Manage.Core.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.SAAS.Manage.Core.DataBase
  9. {
  10. [SugarTable("bpa_goodsenergyconfigdetails")]
  11. public class BPA_GoodsEnergyConfigDetails : IBaseEntity, IGroupId
  12. {
  13. public string GoodsenergyconfigId { get; set; }
  14. public string Key { get; set; }
  15. public string Value { get; set; }
  16. public string GroupId { get ; set; }
  17. }
  18. }