Compare commits
2 Commits
48935314bf
...
6cc473fead
Author | SHA1 | Date | |
---|---|---|---|
![]() |
6cc473fead | ||
![]() |
d1373a5524 |
@ -22,7 +22,7 @@ import lombok.experimental.Accessors;
|
|||||||
/**
|
/**
|
||||||
* @Description: 题目
|
* @Description: 题目
|
||||||
* @Author: jeecg-boot
|
* @Author: jeecg-boot
|
||||||
* @Date: 2025-08-31
|
* @Date: 2025-09-02
|
||||||
* @Version: V1.0
|
* @Version: V1.0
|
||||||
*/
|
*/
|
||||||
@Data
|
@Data
|
||||||
@ -63,6 +63,14 @@ public class AiolQuestion implements Serializable {
|
|||||||
@Excel(name = "分值", width = 15)
|
@Excel(name = "分值", width = 15)
|
||||||
@Schema(description = "分值")
|
@Schema(description = "分值")
|
||||||
private java.lang.Integer score;
|
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 = "创建人")
|
@Schema(description = "创建人")
|
||||||
private java.lang.String createBy;
|
private java.lang.String createBy;
|
||||||
|
@ -276,7 +276,7 @@ function createAxios(opt?: Partial<CreateAxiosOptions>) {
|
|||||||
// authenticationScheme: 'Bearer',
|
// authenticationScheme: 'Bearer',
|
||||||
authenticationScheme: '',
|
authenticationScheme: '',
|
||||||
//接口超时设置
|
//接口超时设置
|
||||||
timeout: 10 * 1000,
|
timeout: 60 * 1000,
|
||||||
// 基础接口地址
|
// 基础接口地址
|
||||||
// baseURL: globSetting.apiUrl,
|
// baseURL: globSetting.apiUrl,
|
||||||
headers: { 'Content-Type': ContentTypeEnum.JSON },
|
headers: { 'Content-Type': ContentTypeEnum.JSON },
|
||||||
|
@ -35,6 +35,16 @@ export const columns: BasicColumn[] = [
|
|||||||
align:"center",
|
align:"center",
|
||||||
dataIndex: 'score'
|
dataIndex: 'score'
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: '程度',
|
||||||
|
align:"center",
|
||||||
|
dataIndex: 'degree'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '能力',
|
||||||
|
align:"center",
|
||||||
|
dataIndex: 'ability'
|
||||||
|
},
|
||||||
];
|
];
|
||||||
//查询数据
|
//查询数据
|
||||||
export const searchFormSchema: FormSchema[] = [
|
export const searchFormSchema: FormSchema[] = [
|
||||||
@ -76,6 +86,16 @@ export const formSchema: FormSchema[] = [
|
|||||||
label: '分值',
|
label: '分值',
|
||||||
field: 'score',
|
field: 'score',
|
||||||
component: 'InputNumber',
|
component: 'InputNumber',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '程度',
|
||||||
|
field: 'degree',
|
||||||
|
component: 'InputNumber',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '能力',
|
||||||
|
field: 'ability',
|
||||||
|
component: 'InputNumber',
|
||||||
},
|
},
|
||||||
// TODO 主键隐藏字段,目前写死为ID
|
// TODO 主键隐藏字段,目前写死为ID
|
||||||
{
|
{
|
||||||
@ -94,6 +114,8 @@ export const superQuerySchema = {
|
|||||||
analysis: {title: '题目解析',order: 3,view: 'umeditor', type: 'string',},
|
analysis: {title: '题目解析',order: 3,view: 'umeditor', type: 'string',},
|
||||||
difficulty: {title: '难度',order: 4,view: 'number', type: 'number',dictCode: 'question_difficulty',},
|
difficulty: {title: '难度',order: 4,view: 'number', type: 'number',dictCode: 'question_difficulty',},
|
||||||
score: {title: '分值',order: 5,view: 'number', type: 'number',},
|
score: {title: '分值',order: 5,view: 'number', type: 'number',},
|
||||||
|
degree: {title: '程度',order: 6,view: 'number', type: 'number',},
|
||||||
|
ability: {title: '能力',order: 7,view: 'number', type: 'number',},
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user