12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- import request from '@/config/axios'
- // 师生互选记录 VO
- export interface selectionBookVO {
- studentName: string; // 学生姓名
- studentNumber: string; // 学生学号
- major: string; // 学生专业
- supervisorMajor: string; // 导师研究方向
- studentMobile: string; // 学生联系电话
- supervisor: string; // 导师名称
- studentAchievementRequirement: string; // 学生成果要求
- introduction: string; // 简介
- academicSlots: number; // 学硕名额
- professionalSlots: number; // 专硕名额
- supervisorSignature:string;//导师签名
- studentSignature:string;//学生签名
- studentSignDate:Date;//学生签名日期
- supervisorSignDate:Date;//学生签名日期
- }
- export interface printBookVO {
- id:string;
- studentName:string;
- studentNumber:string;
- major:string;
- studentMobile :string;
- supervisor:string;
- supervisorType:string;
- studentAchievementRequirement:string;
- studentSignDate:Date
- supervisorSignDate:Date
- }
- export const selectionBookApi = {
- //更新互选信息表消息
- updateSelectionBook: async (data: selectionBookVO) => {
- return await request.put({ url: `/system/student-select-supervisor-record/updateSelectionBook`, data })
- },
- getSelectionBook: async (id: number) => {
- return await request.get({ url: `/system/student-select-supervisor-record/getSelectionBook?id=`+ id })
- },
- }
|