test[storage]: test unit

This commit is contained in:
godotg
2022-10-27 10:35:10 +08:00
parent fb161bc05c
commit 730cc8a990
2 changed files with 28 additions and 8 deletions
@@ -36,11 +36,3 @@ public class StudentResource implements IPacket {
}
class User implements IPacket {
public String id;
public String name;
public String sex;
public int age;
}
@@ -0,0 +1,28 @@
/*
* Copyright (C) 2020 The zfoo Authors
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*/
package com.zfoo.boot.resource;
import com.zfoo.protocol.IPacket;
/**
* @author godotg
* @version 3.0
*/
public class User implements IPacket {
public String id;
public String name;
public String sex;
public int age;
}