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

19 regels
466 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.Device
  9. {
  10. [SugarTable("bpa_warehousetemplate")]
  11. public class BPA_WarehouseTemplate : IBaseEntity, IGroupId
  12. {
  13. public string DeviceId { get; set; }
  14. public string TemplateName { get; set; }
  15. public string GroupId { get; set; }
  16. }
  17. }