7 changed files with 65 additions and 4 deletions
@ -0,0 +1,18 @@ |
|||||
|
package com.ccsens.game.bean.dto; |
||||
|
|
||||
|
import io.swagger.annotations.ApiModel; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
/** |
||||
|
* @description: |
||||
|
* @author: wuHuiJuan |
||||
|
* @create: 2019/12/26 15:03 |
||||
|
*/ |
||||
|
public class ClientDto { |
||||
|
|
||||
|
@Data |
||||
|
@ApiModel("ClientDtoJoin") |
||||
|
public static class Join{ |
||||
|
|
||||
|
} |
||||
|
} |
||||
@ -0,0 +1,18 @@ |
|||||
|
package com.ccsens.game.bean.vo; |
||||
|
|
||||
|
import io.swagger.annotations.ApiModel; |
||||
|
import io.swagger.annotations.ApiModelProperty; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
/** |
||||
|
* @description: |
||||
|
* @author: wuHuiJuan |
||||
|
* @create: 2019/12/26 15:01 |
||||
|
*/ |
||||
|
public class ClientVo { |
||||
|
@Data |
||||
|
@ApiModel("ClientVoJoin") |
||||
|
public static class Join{ |
||||
|
|
||||
|
} |
||||
|
} |
||||
@ -0,0 +1,9 @@ |
|||||
|
package com.ccsens.game.service; |
||||
|
|
||||
|
/** |
||||
|
* @description: |
||||
|
* @author: wuHuiJuan |
||||
|
* @create: 2019/12/26 15:01 |
||||
|
*/ |
||||
|
public class ClientService implements IClientService { |
||||
|
} |
||||
@ -0,0 +1,11 @@ |
|||||
|
package com.ccsens.game.service; |
||||
|
|
||||
|
/** |
||||
|
* @description: |
||||
|
* @author: wuHuiJuan |
||||
|
* @create: 2019/12/26 15:00 |
||||
|
*/ |
||||
|
public interface IClientService { |
||||
|
|
||||
|
|
||||
|
} |
||||
Loading…
Reference in new issue