mitao
2025-03-17 38f1a806a4e1d8e1560f07a5a26b51cf6a4692be
springcloud_k8s_panzhihuazhihuishequ/service_sangeshenbian/src/main/java/com/panzhihua/sangeshenbian/api/SystemPostController.java
@@ -10,6 +10,7 @@
import org.springframework.web.bind.annotation.*;
import javax.annotation.Resource;
import java.time.LocalDateTime;
/**
 * @author zhibing.pu
@@ -28,6 +29,7 @@
   @ApiOperation(value = "添加职位", tags = {"三个身边后台-职位管理"})
   @OperLog(operModul = "三个身边后台",operType = 1,businessType = "添加职位")
   public R add(@RequestBody SystemPost systemPost) {
      systemPost.setCreateTime(LocalDateTime.now());
      systemPostService.save(systemPost);
      return R.ok();
   }