公告板
版本库
filestore
活动
搜索
登录
main
/
JC24_WCS
24仓库控制系统
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
提交缺失文件
bklLiudl
2024-07-23
800b01a48d309fa19a624e943b3a8fb2e8eef5c8
[JC24_WCS.git]
/
Json
/
JsonShowModel.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace Json
{
public class JsonShowModel<T>
{
public int count;
public T list;
public JsonShowModel(int totalCount, T t)
{
this.count = totalCount;
this.list = t;
}
}
}