解决机构信息变更审核页面变更前后数据混乱问题

This commit is contained in:
1378012178@qq.com 2025-06-30 10:04:22 +08:00
parent 8494d2451a
commit ae46ea7cba
1 changed files with 1 additions and 0 deletions

View File

@ -37,6 +37,7 @@ public class OrgApplyInfoServiceImpl extends ServiceImpl<OrgApplyInfoMapper, Org
public OrgApplyInfoApiEntity insert(OrgApplyInfoApiEntity orgApplyInfoApiEntity) {
OrgApplyInfo orgApplyInfo = new OrgApplyInfo();
BeanUtils.copyProperties(orgApplyInfoApiEntity, orgApplyInfo);
orgApplyInfo.setCreateTime(new Date());
baseMapper.insert(orgApplyInfo);
orgApplyInfoApiEntity.setId(orgApplyInfo.getId());