Parcourir la source

Merge branch 'develop' of gitadmin/tuoheng_freeway into release

tags/v1.1.0^2
chengwang il y a 1 an
Parent
révision
1218b9301b
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. +2
    -2
      tuoheng-service/tuoheng-admin/src/main/java/com/tuoheng/admin/service/road/RoadInformationServiceImpl.java

+ 2
- 2
tuoheng-service/tuoheng-admin/src/main/java/com/tuoheng/admin/service/road/RoadInformationServiceImpl.java Voir le fichier

@@ -121,13 +121,13 @@ public class RoadInformationServiceImpl extends BaseServiceImpl<RoadInformationM
}
if (StringUtils.isEmpty(entity.getId())) {
//新增
if (this.getInformationListByCode(entity)) return JsonResult.error("公路代号存在不能重复");
if (this.getInformationListByCode(entity)) return JsonResult.error("公路已存在");
entity.setCreateUser(userId);
entity.setCreateTime(DateUtils.now());
entity.setTenantId(CurrentUserUtil.getTenantId());
} else {
//更新
if (this.getInformationListByCode(entity)) return JsonResult.error("公路代号存在不能重复");
if (this.getInformationListByCode(entity)) return JsonResult.error("公路已存在");
entity.setUpdateUser(userId);
entity.setUpdateTime(DateUtils.now());
entity.setTenantId(CurrentUserUtil.getTenantId());

Chargement…
Annuler
Enregistrer