BannerParameterArgEntity.cs 490 B

12345678910111213141516171819202122
  1. using Lottomat.Application.Entity.LotteryNumberManage.Parameter;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Lottomat.Application.Entity.BaseManage.Parameter
  8. {
  9. /// <summary>
  10. ///
  11. /// </summary>
  12. public class BannerParameterArgEntity : BaseParameterEntity
  13. {
  14. /// <summary>
  15. /// 数据条数
  16. /// </summary>
  17. public int TotolCount { get; set; } = 5;
  18. }
  19. }