mirror of
https://github.com/tiennm99/zfoo.git
synced 2026-06-05 06:15:40 +00:00
test[storage]: test unit
This commit is contained in:
@@ -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;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user