查询
二、数据分页script
三、所需的规范
export interface ListInt{
userId:number;
id:number,
title:string,
body:string
}
interface SelectDataInt{
title:string,
body:string,
page:number,
count:number
}
export class InitData{
selectData:SelectDataInt={
title:'',
body:'',
page:0,
count:0
}
list:[ListInt][]=[]
dataList:ListInt[]=[]
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)