1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.flightfeather.uav.lightshare.bean
|
| import com.fasterxml.jackson.annotation.JsonIgnoreProperties
| import com.fasterxml.jackson.annotation.JsonInclude
|
| /**
| * 基础Json结构,所有的数据以此为基类
| * @author riku
| * Date: 2019/8/27
| */
| @JsonInclude(JsonInclude.Include.NON_NULL)
| @JsonIgnoreProperties(ignoreUnknown = true)
| open class BaseJson{
| val cmdCode: Int? = null
| }
|
|