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