13 lines
161 B
TypeScript
13 lines
161 B
TypeScript
import {prizeType} from "../../type";
|
|
|
|
/**
|
|
* 元旦达摩领奖
|
|
*/
|
|
export type ReqDMRec = {
|
|
id: 1 | 0
|
|
}
|
|
|
|
export type ResDMRec = {
|
|
prize: prizeType[]
|
|
}
|