tijian_jichuang/Code/SOH.Kernel/Interface/IIDCardRead.cs

36 lines
530 B
C#
Raw Normal View History

2025-02-20 11:54:48 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace SOH.Interface
{
public interface IIDCardRead
{
int init();
int read();
int exit();
string xm { get; }
string mz { get; }
DateTime csrq { get; }
string dz { get; }
string sfzh { get; }
string fzjg { get; }
DateTime yxqqs { get; }
DateTime yxqjz { get; }
string xbcode { get; }
string mzcode { get; }
}
}