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.

BPA_MemberAccount.cs 487 B

11 months ago
123456789101112131415161718192021
  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. /// <summary>
  11. /// 会员账户
  12. /// </summary>
  13. [SugarTable("BPA_MemberAccount")]
  14. public class BPA_MemberAccount : IBaseGroupIdEntity
  15. {
  16. public string MemberInfoId { get; set; }
  17. public decimal Money { get; set; }
  18. }
  19. }