英译文件修改和无法处理数据进行返回(公众号和文件id)
This commit is contained in:
+5
-1
@@ -376,7 +376,11 @@ public class SarBussionessStandController extends BaseController<SarBussionessSt
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ApiOperation(value = "|SarBussionessStand|判断原文译文")
|
||||
@GetMapping("/emptyFileAnewStorage")
|
||||
public ResponseMessage emptyFileAnewStorage (String type){
|
||||
return sarBussionessStandEOService.emptyFileAnewStorage(type);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,39 @@
|
||||
package com.adc.da.slrs.sarBussionessStand.entity;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class OldSystem {
|
||||
|
||||
//kmpro_addon34 与 buss_id 对应
|
||||
private String loreDocId;
|
||||
//lore_depot_sort
|
||||
private String sortId;
|
||||
//lore_attache
|
||||
private String fileSign;
|
||||
//lore_attache
|
||||
private String fileSrc;
|
||||
//lore_depot_sort
|
||||
private String sortSign;
|
||||
//lore_attache
|
||||
private String ext;
|
||||
|
||||
//新系统返回数据所需要的
|
||||
private String attfid;
|
||||
|
||||
private String standId;
|
||||
|
||||
private String buildId;
|
||||
|
||||
private String fileId;
|
||||
|
||||
private String standNumber;
|
||||
|
||||
|
||||
// 需要组合的数据
|
||||
private String attFileId;
|
||||
|
||||
private String original;
|
||||
|
||||
private String Translation;
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
package com.adc.da.slrs.sarBussionessStand.entity;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class OldSystemVo {
|
||||
|
||||
private String id;
|
||||
//标准号
|
||||
private String standNumber;
|
||||
//译文件
|
||||
private String translateFileId;
|
||||
//原文件
|
||||
private String originalFileId;
|
||||
}
|
||||
+1
@@ -54,5 +54,6 @@ public interface ISarBussionessStandService extends IService<SarBussionessStand>
|
||||
|
||||
void checkFileByEncrypt();
|
||||
|
||||
ResponseMessage emptyFileAnewStorage(String type);
|
||||
}
|
||||
|
||||
|
||||
+1457
-8
File diff suppressed because it is too large
Load Diff
+5
@@ -41,4 +41,9 @@ public interface SarStandAttrInfoDao extends BaseMapper<SarStandAttrInfo> {
|
||||
String selectFieldValByStandId(@Param("field") String field, @Param("standId") String standId);
|
||||
|
||||
List<SelectionResult> selectFieldValByContainsVal(@Param("field") String field, @Param("value") String value, @Param("standIds") List<String> standIds);
|
||||
|
||||
void updateByIdInfo(@Param("id")String id,@Param("fbgbjbd") String fbgbuss,@Param("fbgywbd") String fbgywbd);
|
||||
|
||||
String selectInfoStandId(@Param("standId")String standId);
|
||||
}
|
||||
|
||||
|
||||
+13
@@ -1,5 +1,6 @@
|
||||
package com.adc.da.slrs.sarStandardsInfo.dao;
|
||||
|
||||
import com.adc.da.slrs.sarBussionessStand.entity.OldSystem;
|
||||
import com.adc.da.slrs.sarStandardsInfo.entity.DSarStandardDTO;
|
||||
import com.adc.da.slrs.sarStandardsInfo.entity.RecommendVO;
|
||||
import com.adc.da.slrs.sarStandardsInfo.entity.SarStandardsInfo;
|
||||
@@ -99,4 +100,16 @@ public interface SarStandardsInfoDao extends BaseMapper<SarStandardsInfo> {
|
||||
|
||||
List<DSarStandardDTO> dealWithDS(@Param("type") String standType, @Param("status")List<String> strings);
|
||||
|
||||
List<OldSystem> selectListInfo(@Param("type") String type);
|
||||
|
||||
List<OldSystem> OldSystemFile(@Param("loreDocId") String loreDocId);
|
||||
|
||||
List<OldSystem> selectOldSystemFile();
|
||||
|
||||
List<OldSystem> selectOldSystemFileBuildId(@Param("buildId") String buildId);
|
||||
|
||||
OldSystem loreDepotSort(@Param("sortId") String sortId);
|
||||
|
||||
List<OldSystem> selectOldSystemInfoByBuidId(@Param("buildId") String buildId);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user