123456789101112131415161718192021 |
- using OASystem.Domain.Entities;
- using OASystem.Domain.ViewModels;
- namespace OASystem.Infrastructure.Repositories
- {
- //public class OrderRepository : BaseRepository<Order, OrderView>
- //{
- // public OrderRepository(SqlSugarClient sqlSugar) : base(sqlSugar)
- // {
- // }
- // public string GetNextPayNo()
- // {
- // SugarParameter[] param = new SugarParameter[] { };
- // int rst = _sqlSugar.Ado.UseStoredProcedure().GetInt("GetNextPayNo", param);
- // return DateTime.Now.ToString("yyyyMMddHHmmss") + rst.ToString("D5");
- // }
- //}
- }
|