13 lines
171 B
TypeScript
13 lines
171 B
TypeScript
|
|
/**
|
|
* 元旦赠礼领奖
|
|
*/
|
|
export type ReqZLRec = {
|
|
id: string,
|
|
dlz: { a: string, t: string, n: number }[]
|
|
}
|
|
|
|
export type ResZLRec = {
|
|
[k: string]: any;
|
|
}
|