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.
 
 

17 lines
373 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_PayTemplate")]
  11. public class BPA_PayTemplate: IBaseGroupIdEntity
  12. {
  13. public string Name { get; set; }
  14. }
  15. }