init students,

This commit is contained in:
louiscklaw
2025-04-24 02:12:27 +08:00
parent 7a33549a79
commit 41a35b487a
25 changed files with 3198 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
// RULES:
// default variable value for customer
// empty valur for customer
import { dayjs } from '@/lib/dayjs';
import type { Customer } from './type.d';
export const defaultCustomer: Customer = {
id: '',
name: '',
avatar: undefined,
email: '',
phone: undefined,
quota: 0,
status: 'pending',
createdAt: dayjs().toDate(),
};
export const emptyLpCategory: Customer = {
...defaultCustomer,
};