36 lines
851 B
Objective-C
36 lines
851 B
Objective-C
//
|
|
// StartKTXZPGView.h
|
|
// ProductApp
|
|
//
|
|
// Created by 工作 on 2024/9/21.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "TextbookInfoModel.h"
|
|
#import "ExampleCorrectList.h"
|
|
|
|
#import "ExamplePicModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface StartKTXZPGView : UIView
|
|
///0课堂写作 1作文批改 10改写作文 11拍题成文 12 拍照续写
|
|
@property (nonatomic , assign) int type;
|
|
///是否是引导页
|
|
@property (nonatomic , assign) BOOL isshiyong;
|
|
///引导页数据-课堂写作
|
|
@property (nonatomic , strong) TextbookInfoModelData *modelDetailYDY;
|
|
///引导页数据-作文批改
|
|
@property (nonatomic , strong) ExampleCorrectListDataItems *modelDetailZWPG;
|
|
|
|
|
|
///拍照写作示例
|
|
@property (nonatomic , strong) ExamplePicModelDataItems *modelXZSL;
|
|
///写作的图片
|
|
@property (nonatomic , strong) NSArray *arrXZImages;
|
|
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|