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.
|
- using HKCardOUT.Helper;
- using HKCardOUT.Logic;
- using HKCardOUT.Logic.Model;
- using HKLib.Dto;
- using HKLib.RabbitMQ.Config;
- using System;
- using System.Collections.Generic;
- using System.Text;
- using XExten.Advance.LinqFramework;
-
- namespace HKCardOUT
- {
- public class CardHandle : IAccept
- {
- public void AcceptMQ<T>(string msg)
- {
- var dto = msg.ToModel<CardStutasDto>();
-
- DbContext.Context.Updateable<CardStutas>().SetColumns(t => t.Stutas == dto.Stutas).Where(t => t.CardNo == dto.CardNo).ExecuteCommand();
-
- }
- }
- public class TimeHandle : IAccept
- {
- public void AcceptMQ<T>(string msg)
- {
- DataBus.Times = msg.ToModel<TimeSpilte>();
- }
- }
- }
|