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.
39 lines
618 B
39 lines
618 B
//
|
|
// ToygerDocFrame.h
|
|
// Toyger
|
|
//
|
|
// Created by 王伟伟 on 2018/1/25.
|
|
// Copyright © 2018年 DTF. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <ToygerService/ToygerFrame.h>
|
|
|
|
@interface ToygerDocFrame : ToygerFrame
|
|
|
|
/**
|
|
是否有证件
|
|
*/
|
|
@property (nonatomic, assign) BOOL hasDoc;
|
|
|
|
/**
|
|
证件是否完整
|
|
*/
|
|
@property (nonatomic, assign) BOOL isCompleted;
|
|
|
|
/**
|
|
证件是否反光
|
|
*/
|
|
@property (nonatomic, assign) BOOL isReflected;
|
|
|
|
/**
|
|
图像是否模糊
|
|
*/
|
|
@property (nonatomic, assign) BOOL isBlur;
|
|
|
|
/**
|
|
是否为复印件
|
|
*/
|
|
@property (nonatomic, assign) BOOL isCopy;
|
|
|
|
@end
|