修改实体
This commit is contained in:
@ -4,8 +4,8 @@
|
|||||||
<mapper namespace="com.chinaunicom.mall.ebtp.extend.templatewarehouse.dao.ClientVersionCheckMapper">
|
<mapper namespace="com.chinaunicom.mall.ebtp.extend.templatewarehouse.dao.ClientVersionCheckMapper">
|
||||||
<resultMap id="BaseResultMap"
|
<resultMap id="BaseResultMap"
|
||||||
type="com.chinaunicom.mall.ebtp.extend.templatewarehouse.entity.ClientVersionCheck">
|
type="com.chinaunicom.mall.ebtp.extend.templatewarehouse.entity.ClientVersionCheck">
|
||||||
<result column="new_version" jdbcType="VARCHAR" property="newVersion"/>
|
<result column="high_version" jdbcType="VARCHAR" property="highVersion"/>
|
||||||
<result column="old_version" jdbcType="VARCHAR" property="oldVersion"/>
|
<result column="low_version" jdbcType="VARCHAR" property="lowVersion"/>
|
||||||
<result column="status" jdbcType="INTEGER" property="status"/>
|
<result column="status" jdbcType="INTEGER" property="status"/>
|
||||||
</resultMap>
|
</resultMap>
|
||||||
|
|
||||||
|
@ -23,16 +23,16 @@ public class ClientVersionCheck extends BaseEntity implements Serializable {
|
|||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 新版本客户端版本号
|
* 最高版本客户端版本号
|
||||||
*/
|
*/
|
||||||
@ApiModelProperty(value = "新版本客户端版本号")
|
@ApiModelProperty(value = "最高版本客户端版本号")
|
||||||
private String newVersion;
|
private String highVersion;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 旧版本客户端版本号
|
* 最低版本客户端版本号
|
||||||
*/
|
*/
|
||||||
@ApiModelProperty(value = "旧版本客户端版本号")
|
@ApiModelProperty(value = "最低版本客户端版本号")
|
||||||
private String oldVersion;
|
private String lowVersion;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 状态 是否启用校验 1-启用,2-不启用
|
* 状态 是否启用校验 1-启用,2-不启用
|
||||||
|
Reference in New Issue
Block a user