12345678910111213141516171819202122 |
- using Lottomat.Application.Entity.LotteryNumberManage.Parameter;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Lottomat.Application.Entity.BaseManage.Parameter
- {
- /// <summary>
- ///
- /// </summary>
- public class BannerParameterArgEntity : BaseParameterEntity
- {
- /// <summary>
- /// 数据条数
- /// </summary>
- public int TotolCount { get; set; } = 5;
- }
- }
|