PJob-prisma/types/Job.ts
2024-04-12 18:23:44 +08:00

14 lines
197 B
TypeScript

export type Job = {
id: number;
name: string;
creatTime: string;
updateTime: string;
pin: boolean;
data: {
desc: string;
img: string;
time: string;
pay: number;
};
};