修改实体

This commit is contained in:
zhangyx
2021-04-21 16:06:17 +08:00
parent 40042d3b78
commit 949c548896
2 changed files with 8 additions and 8 deletions

View File

@ -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>

View File

@ -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-不启用