* @package zin * @link http://www.zentao.net */ namespace zin; requireWg('thinkStepBase'); /** * 思引师问题的基础节点。 * thinmory basic node content. */ class thinkQuestion extends thinkStepBase { /** * @var mixed[] */ protected static $defineProps = array( 'required?: int=1', // 是否必填 'questionType?: string', // 问题类型 'value?: string', // 问题的答案 'isResult?: bool=false', // 是否是结果页 ); /** * @var mixed[] */ protected static $defaultProps = array ( 'type' => 'question' ); }