diff --git a/boot/src/test/java/com/zfoo/boot/resource/StudentResource.java b/boot/src/test/java/com/zfoo/boot/resource/StudentResource.java index e372b9f4..8f2d1d2e 100644 --- a/boot/src/test/java/com/zfoo/boot/resource/StudentResource.java +++ b/boot/src/test/java/com/zfoo/boot/resource/StudentResource.java @@ -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; - -} diff --git a/boot/src/test/java/com/zfoo/boot/resource/User.java b/boot/src/test/java/com/zfoo/boot/resource/User.java new file mode 100644 index 00000000..bb75693c --- /dev/null +++ b/boot/src/test/java/com/zfoo/boot/resource/User.java @@ -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; + +}