| 12345678910111213141516171819202122232425262728 |
- using System.Collections.Generic;
- using Lottomat.Application.Code;
- using Lottomat.Application.Entity.CommonEntity;
- namespace Lottomat.Application.IService.OpenCodeManage
- {
- /// <summary>
- /// 开奖10个球号的彩种相关数据接口
- /// </summary>
- public interface IOpen10Code
- {
- /// <summary>
- /// 获取最新一条记录
- /// </summary>
- /// <param name="lottery">彩种名称</param>
- /// <returns></returns>
- OpenCode10Model GetLastItem(SCCLottery lottery);
-
- /// <summary>
- /// 新增彩种开奖数据
- /// </summary>
- /// <param name="lottery">彩种名称</param>
- /// <param name="model">开奖数据模型</param>
- /// <returns></returns>
- bool AddOpen10Code(SCCLottery lottery, OpenCode10Model model);
- }
- }
|