| 123456789101112131415161718192021222324252627 |
- //
- // DBStructModel.h
- // zhuxun
- //
- // Created by winsoft on 17/7/20.
- //
- //
- #import <Foundation/Foundation.h>
- @interface DBStructModel : NSObject
- //cid = 8;
- //"dflt_value" = "<null>";
- //name = serverFullPath;
- //notnull = 0;
- //pk = 0;
- //type = text;
- @property (nonatomic , assign) NSInteger cid;
- @property (nonatomic , copy) NSString *dflt_value;
- @property (nonatomic , copy) NSString *name;
- @property (nonatomic , assign) NSInteger notnull;
- @property (nonatomic , assign) NSInteger pk;
- @property (nonatomic , copy) NSString *type;
- + (DBStructModel *)dbStructModelWithName:(NSString *)name type:(NSString *)type;
- @end
|