Your ROOT_URL in app.ini is http://git.zky.com/ but you are visiting http://61.178.84.89:8998/wangxy/hyp-web/commit/cc9be8dabc8b6e2e3cbcb4e211d5d90d2ed4106d?style=unified&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
5 additions and
5 deletions
@ -43,7 +43,7 @@ public class ScoreInfoManager {
LoginUser loginUser = SecurityUtils . getLoginUser ( ) ;
RewScoreInfo rewScoreInfo = Convert . convert ( RewScoreInfo . class , scoreInfo ) ;
rewScoreInfo . setCreateId ( loginUser . getUserId ( ) ) ;
if ( StringUtils . isNotEmpty ( scoreInfo . get Id( ) ) ) {
if ( StringUtils . isNotEmpty ( scoreInfo . get Score Id( ) ) ) {
rewScoreInfo . setUpdateTime ( new Date ( ) ) ;
rewScoreInfo . setUpdateBy ( loginUser . getUsername ( ) ) ;
} else {
@ -25,7 +25,7 @@ public class RewScoreInfo extends BaseEntity {
* 主 键
* /
@TableId ( type = IdType . ASSIGN_UUID )
private String i d;
private String scoreI d;
/ * *
* 评 分
@ -17,7 +17,7 @@ public class ScoreInfoSaveDTO implements Serializable {
/ * *
* 主 键
* /
private String i d;
private String scoreI d;
/ * *
* 评 分
@ -5,7 +5,7 @@
<mapper namespace= "com.hyp.system.mapper.RewScoreInfoMapper" >
<resultMap id= "BaseResultMap" type= "com.hyp.system.domain.RewScoreInfo" >
<id property= " id" column= " id" jdbcType= "VARCHAR" />
<id property= " scoreId" column= "score_ id" jdbcType= "VARCHAR" />
<result property= "score" column= "score" jdbcType= "VARCHAR" />
<result property= "applyId" column= "apply_id" jdbcType= "VARCHAR" />
<result property= "createId" column= "create_id" jdbcType= "INTEGER" />
@ -17,7 +17,7 @@
</resultMap>
<sql id= "Base_Column_List" >
id,score,apply_id,
score_ id,score,apply_id,
create_id,create_by,create_time,
update_by,update_time,remark
</sql>