Commit 6b5348f6 authored by suhuiguang's avatar suhuiguang

feat(使用登记大编辑):

1.使用登记台套类编辑开发台套类接口测试
parent e557f74e
...@@ -42,4 +42,7 @@ public class EquipRegisterChangeDataDto extends BaseChangeDataDto { ...@@ -42,4 +42,7 @@ public class EquipRegisterChangeDataDto extends BaseChangeDataDto {
@FieldDisplayDefine(value = "其他附件", type = JSON.class) @FieldDisplayDefine(value = "其他附件", type = JSON.class)
private String otherAccessoriesReg; private String otherAccessoriesReg;
@FieldDisplayDefine(value = "安装资料是否完整齐全")
private String installationIsComplete;
} }
...@@ -21,5 +21,4 @@ public class EquipUseInfoChangeDataDto extends BaseChangeDataDto { ...@@ -21,5 +21,4 @@ public class EquipUseInfoChangeDataDto extends BaseChangeDataDto {
@FieldDisplayDefine(value = "设备来源", isExist = false) @FieldDisplayDefine(value = "设备来源", isExist = false)
private String dataSource; private String dataSource;
} }
...@@ -61,6 +61,7 @@ public class EquipChangeDataUpdateServiceImpl { ...@@ -61,6 +61,7 @@ public class EquipChangeDataUpdateServiceImpl {
updateWrapper.set(IdxBizJgRegisterInfo::getEquPrice, registerChangeDataDto.getEquPrice()); updateWrapper.set(IdxBizJgRegisterInfo::getEquPrice, registerChangeDataDto.getEquPrice());
updateWrapper.set(IdxBizJgRegisterInfo::getProductPhoto, registerChangeDataDto.getProductPhoto()); updateWrapper.set(IdxBizJgRegisterInfo::getProductPhoto, registerChangeDataDto.getProductPhoto());
updateWrapper.set(IdxBizJgRegisterInfo::getOtherAccessoriesReg, registerChangeDataDto.getOtherAccessoriesReg()); updateWrapper.set(IdxBizJgRegisterInfo::getOtherAccessoriesReg, registerChangeDataDto.getOtherAccessoriesReg());
updateWrapper.set(IdxBizJgRegisterInfo::getInstallationIsComplete, registerChangeDataDto.getInstallationIsComplete());
idxBizJgRegisterInfoMapper.update(null, updateWrapper); idxBizJgRegisterInfoMapper.update(null, updateWrapper);
updateRegisterEsData(record, registerChangeDataDto); updateRegisterEsData(record, registerChangeDataDto);
} }
......
...@@ -4,6 +4,7 @@ import com.alibaba.fastjson.JSON; ...@@ -4,6 +4,7 @@ import com.alibaba.fastjson.JSON;
import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName; import com.baomidou.mybatisplus.annotation.TableName;
import com.yeejoin.amos.boot.biz.common.annotation.FieldDisplayDefine; import com.yeejoin.amos.boot.biz.common.annotation.FieldDisplayDefine;
import com.yeejoin.amos.boot.biz.common.annotation.Group;
import com.yeejoin.amos.boot.biz.common.entity.TzsBaseEntity; import com.yeejoin.amos.boot.biz.common.entity.TzsBaseEntity;
import com.yeejoin.amos.boot.module.common.api.dto.IBaseChangeData; import com.yeejoin.amos.boot.module.common.api.dto.IBaseChangeData;
import lombok.Data; import lombok.Data;
...@@ -22,6 +23,7 @@ import java.util.Date; ...@@ -22,6 +23,7 @@ import java.util.Date;
@EqualsAndHashCode(callSuper = true) @EqualsAndHashCode(callSuper = true)
@Accessors(chain = true) @Accessors(chain = true)
@TableName("idx_biz_jg_construction_info") @TableName("idx_biz_jg_construction_info")
@Group("idx_biz_jg_construction_info")
public class IdxBizJgConstructionInfo extends TzsBaseEntity implements IBaseChangeData { public class IdxBizJgConstructionInfo extends TzsBaseEntity implements IBaseChangeData {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment