Compare commits

..

No commits in common. "6cc473feadadff46ce8c13a41304235f3d3d1a49" and "48935314bf08562298a9e3d5273b4b4df03eefdb" have entirely different histories.

3 changed files with 2 additions and 32 deletions

View File

@ -22,7 +22,7 @@ import lombok.experimental.Accessors;
/**
* @Description: 题目
* @Author: jeecg-boot
* @Date: 2025-09-02
* @Date: 2025-08-31
* @Version: V1.0
*/
@Data
@ -63,14 +63,6 @@ public class AiolQuestion implements Serializable {
@Excel(name = "分值", width = 15)
@Schema(description = "分值")
private java.lang.Integer score;
/**程度*/
@Excel(name = "程度", width = 15)
@Schema(description = "程度")
private java.lang.Integer degree;
/**能力*/
@Excel(name = "能力", width = 15)
@Schema(description = "能力")
private java.lang.Integer ability;
/**创建人*/
@Schema(description = "创建人")
private java.lang.String createBy;

View File

@ -276,7 +276,7 @@ function createAxios(opt?: Partial<CreateAxiosOptions>) {
// authenticationScheme: 'Bearer',
authenticationScheme: '',
//
timeout: 60 * 1000,
timeout: 10 * 1000,
//
// baseURL: globSetting.apiUrl,
headers: { 'Content-Type': ContentTypeEnum.JSON },

View File

@ -35,16 +35,6 @@ export const columns: BasicColumn[] = [
align:"center",
dataIndex: 'score'
},
{
title: '程度',
align:"center",
dataIndex: 'degree'
},
{
title: '能力',
align:"center",
dataIndex: 'ability'
},
];
//
export const searchFormSchema: FormSchema[] = [
@ -86,16 +76,6 @@ export const formSchema: FormSchema[] = [
label: '分值',
field: 'score',
component: 'InputNumber',
},
{
label: '程度',
field: 'degree',
component: 'InputNumber',
},
{
label: '能力',
field: 'ability',
component: 'InputNumber',
},
// TODO ID
{
@ -114,8 +94,6 @@ export const superQuerySchema = {
analysis: {title: '题目解析',order: 3,view: 'umeditor', type: 'string',},
difficulty: {title: '难度',order: 4,view: 'number', type: 'number',dictCode: 'question_difficulty',},
score: {title: '分值',order: 5,view: 'number', type: 'number',},
degree: {title: '程度',order: 6,view: 'number', type: 'number',},
ability: {title: '能力',order: 7,view: 'number', type: 'number',},
};
/**