36 lines
530 B
C#
36 lines
530 B
C#
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; }
|
|
}
|
|
}
|