+ * 答卷详情表 + *
+ * + * @author Soul2 + * @since 2024-03-12 10:10:24 + */ +@Getter +@Setter +@Accessors(chain = true) +@TableName("tb_answer_details") +public class AnswerDetailsDO extends Model+ * 答卷表 + *
+ * + * @author Soul2 + * @since 2024-03-13 12:36:58 + */ +@Getter +@Setter +@Accessors(chain = true) +@TableName("tb_answer_sheet") +public class AnswerSheetDO extends Model+ * 第三方结果回传表 + *
+ * + * @author Soul2 + * @since 2024-03-12 10:29:17 + */ +@Getter +@Setter +@Accessors(chain = true) +@TableName("tb_external_backhaul") +public class ExternalBackhaulDO extends Model+ * 问卷表 + *
+ * + * @author Soul2 + * @since 2024-03-11 23:11:45 + */ +@Getter +@Setter +@Accessors(chain = true) +@TableName("tb_questionnaire") +public class QuestionnaireDO extends Model+ * 题目-问卷连接表 + *
+ * + * @author Soul2 + * @since 2024-03-13 15:35:52 + */ +@Getter +@Setter +@Accessors(chain = true) +@TableName("tb_ref_questionnaire_subject") +public class RefQuestionnaireSubjectDO extends Model+ * 题目-选项连接表 + *
+ * + * @author Soul2 + * @since 2024-03-13 15:35:52 + */ +@Getter +@Setter +@Accessors(chain = true) +@TableName("tb_ref_subject_items") +public class RefSubjectItemsDO extends Model+ * 题目表 + *
+ * + * @author Soul2 + * @since 2024-03-12 10:10:24 + */ +@Getter +@Setter +@Accessors(chain = true) +@TableName("tb_subject") +public class SubjectDO extends Model+ * 题选项表 + *
+ * + * @author Soul2 + * @since 2024-03-12 10:10:24 + */ +@Getter +@Setter +@Accessors(chain = true) +@TableName("tb_subject_items") +public class SubjectItemsDO extends Model+ * 答卷详情表 Mapper 接口 + *
+ * + * @author Soul2 + * @since 2024-03-12 10:10:24 + */ +public interface AnswerDetailsMapper extends BaseMapper+ * 答卷表 Mapper 接口 + *
+ * + * @author Soul2 + * @since 2024-03-12 10:10:24 + */ +public interface AnswerSheetMapper extends BaseMapper+ * 第三方结果回传表 Mapper 接口 + *
+ * + * @author Soul2 + * @since 2024-03-12 10:29:17 + */ +public interface ExternalBackhaulMapper extends BaseMapper+ * 问卷表 Mapper 接口 + *
+ * + * @author Soul2 + * @since 2024-03-11 23:11:45 + */ +public interface QuestionnaireMapper extends BaseMapper+ * 题目-问卷连接表 Mapper 接口 + *
+ * + * @author Soul2 + * @since 2024-03-12 10:10:24 + */ +public interface RefQuestionnaireSubjectMapper extends BaseMapper+ * 题目-选项连接表 Mapper 接口 + *
+ * + * @author Soul2 + * @since 2024-03-12 10:10:24 + */ +public interface RefSubjectItemsMapper extends BaseMapper+ * 题选项表 Mapper 接口 + *
+ * + * @author Soul2 + * @since 2024-03-12 10:10:24 + */ +public interface SubjectItemsMapper extends BaseMapper+ * 题目表 Mapper 接口 + *
+ * + * @author Soul2 + * @since 2024-03-12 10:10:24 + */ +public interface SubjectMapper extends BaseMapper+ * 答卷详情表 服务类 + *
+ * + * @author Soul2 + * @since 2024-03-12 10:10:24 + */ +public interface IAnswerDetailsRepository extends IService+ * 答卷表 服务类 + *
+ * + * @author Soul2 + * @since 2024-03-12 10:10:24 + */ +public interface IAnswerSheetRepository extends IService+ * 第三方结果回传表 服务类 + *
+ * + * @author Soul2 + * @since 2024-03-12 10:29:17 + */ +public interface IExternalBackhaulRepository extends IService+ * 问卷表 服务类 + *
+ * + * @author Soul2 + * @since 2024-03-11 23:11:45 + */ +public interface IQuestionnaireRepository extends IService+ * 题目-问卷连接表 服务类 + *
+ * + * @author Soul2 + * @since 2024-03-12 10:10:24 + */ +public interface IRefQuestionnaireSubjectRepository extends IService+ * 题目-选项连接表 服务类 + *
+ * + * @author Soul2 + * @since 2024-03-12 10:10:24 + */ +public interface IRefSubjectItemsRepository extends IService+ * 题选项表 服务类 + *
+ * + * @author Soul2 + * @since 2024-03-12 10:10:24 + */ +public interface ISubjectItemsRepository extends IService+ * 题目表 服务类 + *
+ * + * @author Soul2 + * @since 2024-03-12 10:10:24 + */ +public interface ISubjectRepository extends IService+ * 答卷详情表 服务实现类 + *
+ * + * @author Soul2 + * @since 2024-03-12 10:10:24 + */ +@Service +public class AnswerDetailsRepositoryImpl extends ServiceImpl+ * 答卷表 服务实现类 + *
+ * + * @author Soul2 + * @since 2024-03-12 10:10:24 + */ +@Service +public class AnswerSheetRepositoryImpl extends ServiceImpl+ * 第三方结果回传表 服务实现类 + *
+ * + * @author Soul2 + * @since 2024-03-12 10:29:17 + */ +@Service +public class ExternalBackhaulRepositoryImpl extends ServiceImpl+ * 问卷表 服务实现类 + *
+ * + * @author Soul2 + * @since 2024-03-11 23:11:45 + */ +@Service +public class QuestionnaireRepositoryImpl extends ServiceImpl+ * 题目-问卷连接表 服务实现类 + *
+ * + * @author Soul2 + * @since 2024-03-12 10:10:24 + */ +@Service +public class RefQuestionnaireSubjectRepositoryImpl extends ServiceImpl+ * 题目-选项连接表 服务实现类 + *
+ * + * @author Soul2 + * @since 2024-03-12 10:10:24 + */ +@Service +public class RefSubjectItemsRepositoryImpl extends ServiceImpl+ * 题选项表 服务实现类 + *
+ * + * @author Soul2 + * @since 2024-03-12 10:10:24 + */ +@Service +public class SubjectItemsRepositoryImpl extends ServiceImpl+ * 题目表 服务实现类 + *
+ * + * @author Soul2 + * @since 2024-03-12 10:10:24 + */ +@Service +public class SubjectRepositoryImpl extends ServiceImpl