UNPKG

yg-tools

Version:

some convenient APIs and Methods for Youngon

62 lines (61 loc) 1.05 kB
export declare class Apply { /** * 申请 id */ aid: number; /** * 申请者学号 */ applicantstuid: number; /** * 申请者姓名 */ applicantname: string; /** * 申请者头像 */ applicanthead: string; /** * 申请日期 */ appdate: string; /** * 申请理由 */ appreason: string; /** * 要申请的时间 */ apptime: string; /** * 要申请的课节 */ appclass: number; /** * 补值班时间 */ appfixtime: string; /** * 补值班课节 */ appfixclass: number; /** * 申请状态 0代表未处理 1代表同意 2代表拒绝 */ state: 0 | 1 | 2; /** * 处理日期 */ redate?: string | null; /** * 处理人学号 */ handlerstuid?: string | null; /** * 处理人姓名 */ handlername?: string | null; constructor(apply?: Partial<Apply>); static createApply(apply?: Partial<Apply>): Apply; } export default Apply;