Commit eb5ddd75 authored by alex yao's avatar alex yao

feat(convert): 添加创建时间字段映射

- 在BizSoftwareCopyrightConvert转换器中添加createdTime字段映射
- 确保实体的创建时间能够正确传递到DTO对象
parent 7549563a
...@@ -101,6 +101,7 @@ public class BizSoftwareCopyrightConvert { ...@@ -101,6 +101,7 @@ public class BizSoftwareCopyrightConvert {
); );
softwareCopyRightDto.setGeneratedStatus(entity.getGeneratedStatus()); softwareCopyRightDto.setGeneratedStatus(entity.getGeneratedStatus());
softwareCopyRightDto.setErrorMess(entity.getErrorMess()); softwareCopyRightDto.setErrorMess(entity.getErrorMess());
softwareCopyRightDto.setCreatedTime(entity.getCreatedTime());
return softwareCopyRightDto; return softwareCopyRightDto;
} }
......
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