PJob-prisma/types/Job.ts

14 lines
197 B
TypeScript
Raw Permalink Normal View History

2024-04-12 10:23:44 +00:00
export type Job = {
id: number;
name: string;
creatTime: string;
updateTime: string;
pin: boolean;
data: {
desc: string;
img: string;
time: string;
pay: number;
};
};