| 1234567891011121314151617181920 |
- //
- // DBStructModel.m
- // zhuxun
- //
- // Created by winsoft on 17/7/20.
- //
- //
- #import "DBStructModel.h"
- @implementation DBStructModel
- + (DBStructModel *)dbStructModelWithName:(NSString *)name type:(NSString *)type
- {
- DBStructModel *dbModel = [[DBStructModel alloc]init];
- dbModel.name = name;
- dbModel.type = type;
- return dbModel;
- }
- @end
|