正在显示
12 个修改的文件
包含
37 行增加
和
23 行删除
| @@ -194,7 +194,7 @@ public class TblProductionGongxuController extends JeecgController<TblProduction | @@ -194,7 +194,7 @@ public class TblProductionGongxuController extends JeecgController<TblProduction | ||
| 194 | */ | 194 | */ |
| 195 | @RequestMapping(value = "/exportXls") | 195 | @RequestMapping(value = "/exportXls") |
| 196 | public ModelAndView exportXls(HttpServletRequest request, TblProductionGongxu tblProductionGongxu) { | 196 | public ModelAndView exportXls(HttpServletRequest request, TblProductionGongxu tblProductionGongxu) { |
| 197 | - return super.exportXls(request, tblProductionGongxu, TblProductionGongxu.class, "tbl_production_gongxu"); | 197 | + return super.exportXls(request, tblProductionGongxu, TblProductionGongxu.class, "工序"); |
| 198 | } | 198 | } |
| 199 | 199 | ||
| 200 | /** | 200 | /** |
| @@ -118,7 +118,7 @@ public class TblProductionPlanController extends JeecgController<TblOrderForm, I | @@ -118,7 +118,7 @@ public class TblProductionPlanController extends JeecgController<TblOrderForm, I | ||
| 118 | */ | 118 | */ |
| 119 | @RequestMapping(value = "/exportXls") | 119 | @RequestMapping(value = "/exportXls") |
| 120 | public ModelAndView exportXls(HttpServletRequest request, TblOrderForm tblProductionPlan) { | 120 | public ModelAndView exportXls(HttpServletRequest request, TblOrderForm tblProductionPlan) { |
| 121 | - return super.exportXls(request, tblProductionPlan, TblOrderForm.class, "tbl_production_plan"); | 121 | + return super.exportXls(request, tblProductionPlan, TblOrderForm.class, "生产计划"); |
| 122 | } | 122 | } |
| 123 | 123 | ||
| 124 | /** | 124 | /** |
| @@ -115,6 +115,20 @@ public class TblSalaryBase implements Serializable { | @@ -115,6 +115,20 @@ public class TblSalaryBase implements Serializable { | ||
| 115 | @Excel(name = "全勤奖励", width = 15) | 115 | @Excel(name = "全勤奖励", width = 15) |
| 116 | @ApiModelProperty(value = "全勤奖励") | 116 | @ApiModelProperty(value = "全勤奖励") |
| 117 | private BigDecimal fullAttendanceAward; | 117 | private BigDecimal fullAttendanceAward; |
| 118 | + | ||
| 119 | + /**合同周期开始时间*/ | ||
| 120 | + @Excel(name = "合同周期开始时间", width = 15, format = "yyyy-MM-dd") | ||
| 121 | + @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd") | ||
| 122 | + @DateTimeFormat(pattern="yyyy-MM-dd") | ||
| 123 | + @ApiModelProperty(value = "合同周期开始时间") | ||
| 124 | + private Date satrtTime; | ||
| 125 | + | ||
| 126 | + /**合同周期结束时间*/ | ||
| 127 | + @Excel(name = "合同周期结束时间", width = 15, format = "yyyy-MM-dd") | ||
| 128 | + @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd") | ||
| 129 | + @DateTimeFormat(pattern="yyyy-MM-dd") | ||
| 130 | + @ApiModelProperty(value = "合同周期结束时间") | ||
| 131 | + private Date endTime; | ||
| 118 | /**劳动合同周期*/ | 132 | /**劳动合同周期*/ |
| 119 | @Excel(name = "劳动合同周期", width = 15, format = "yyyy-MM-dd") | 133 | @Excel(name = "劳动合同周期", width = 15, format = "yyyy-MM-dd") |
| 120 | @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd") | 134 | @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd") |
| @@ -171,7 +171,7 @@ public class TblTradBaseController extends JeecgController<TblTradBase, TblTradB | @@ -171,7 +171,7 @@ public class TblTradBaseController extends JeecgController<TblTradBase, TblTradB | ||
| 171 | */ | 171 | */ |
| 172 | @RequestMapping(value = "/exportXls") | 172 | @RequestMapping(value = "/exportXls") |
| 173 | public ModelAndView exportXls(HttpServletRequest request, TblTradBase tblTradBase) { | 173 | public ModelAndView exportXls(HttpServletRequest request, TblTradBase tblTradBase) { |
| 174 | - return super.exportXls(request, tblTradBase, TblTradBase.class, "tbl_trad_base"); | 174 | + return super.exportXls(request, tblTradBase, TblTradBase.class, "贸易基础信息"); |
| 175 | } | 175 | } |
| 176 | 176 | ||
| 177 | /** | 177 | /** |
| @@ -193,7 +193,7 @@ public class TblTradContractController extends JeecgController<TblTradContract, | @@ -193,7 +193,7 @@ public class TblTradContractController extends JeecgController<TblTradContract, | ||
| 193 | */ | 193 | */ |
| 194 | @RequestMapping(value = "/exportXls") | 194 | @RequestMapping(value = "/exportXls") |
| 195 | public ModelAndView exportXls(HttpServletRequest request, TblTradContract tblTradContract) { | 195 | public ModelAndView exportXls(HttpServletRequest request, TblTradContract tblTradContract) { |
| 196 | - return super.exportXls(request, tblTradContract, TblTradContract.class, "tbl_trad_contract"); | 196 | + return super.exportXls(request, tblTradContract, TblTradContract.class, "贸易合同"); |
| 197 | } | 197 | } |
| 198 | 198 | ||
| 199 | /** | 199 | /** |
| @@ -190,7 +190,7 @@ public class TblTradFphkController extends JeecgController<TblTradFphk, TblTradF | @@ -190,7 +190,7 @@ public class TblTradFphkController extends JeecgController<TblTradFphk, TblTradF | ||
| 190 | */ | 190 | */ |
| 191 | @RequestMapping(value = "/exportXls") | 191 | @RequestMapping(value = "/exportXls") |
| 192 | public ModelAndView exportXls(HttpServletRequest request, TblTradFphk tblTradFphk) { | 192 | public ModelAndView exportXls(HttpServletRequest request, TblTradFphk tblTradFphk) { |
| 193 | - return super.exportXls(request, tblTradFphk, TblTradFphk.class, "tbl_trad_fphk"); | 193 | + return super.exportXls(request, tblTradFphk, TblTradFphk.class, "贸易发票回款"); |
| 194 | } | 194 | } |
| 195 | 195 | ||
| 196 | /** | 196 | /** |
| @@ -160,7 +160,7 @@ public class TblTradInquiryController extends JeecgController<TblTradInquiry, Tb | @@ -160,7 +160,7 @@ public class TblTradInquiryController extends JeecgController<TblTradInquiry, Tb | ||
| 160 | */ | 160 | */ |
| 161 | @RequestMapping(value = "/exportXls") | 161 | @RequestMapping(value = "/exportXls") |
| 162 | public ModelAndView exportXls(HttpServletRequest request, TblTradInquiry tblTradInquiry) { | 162 | public ModelAndView exportXls(HttpServletRequest request, TblTradInquiry tblTradInquiry) { |
| 163 | - return super.exportXls(request, tblTradInquiry, TblTradInquiry.class, "tbl_trad_inquiry"); | 163 | + return super.exportXls(request, tblTradInquiry, TblTradInquiry.class, "贸易询价"); |
| 164 | } | 164 | } |
| 165 | 165 | ||
| 166 | /** | 166 | /** |
| @@ -163,7 +163,7 @@ public class TblTradReturnController extends JeecgController<TblTradReturn, ITbl | @@ -163,7 +163,7 @@ public class TblTradReturnController extends JeecgController<TblTradReturn, ITbl | ||
| 163 | */ | 163 | */ |
| 164 | @RequestMapping(value = "/exportXls") | 164 | @RequestMapping(value = "/exportXls") |
| 165 | public ModelAndView exportXls(HttpServletRequest request, TblTradReturn tblTradReturn) { | 165 | public ModelAndView exportXls(HttpServletRequest request, TblTradReturn tblTradReturn) { |
| 166 | - return super.exportXls(request, tblTradReturn, TblTradReturn.class, "tbl_trad_return"); | 166 | + return super.exportXls(request, tblTradReturn, TblTradReturn.class, "发票返回信息"); |
| 167 | } | 167 | } |
| 168 | 168 | ||
| 169 | /** | 169 | /** |
| @@ -153,7 +153,7 @@ public class TblTradSupplierController extends JeecgController<TblTradSupplier, | @@ -153,7 +153,7 @@ public class TblTradSupplierController extends JeecgController<TblTradSupplier, | ||
| 153 | */ | 153 | */ |
| 154 | @RequestMapping(value = "/exportXls") | 154 | @RequestMapping(value = "/exportXls") |
| 155 | public ModelAndView exportXls(HttpServletRequest request, TblTradSupplier tblTradSupplier) { | 155 | public ModelAndView exportXls(HttpServletRequest request, TblTradSupplier tblTradSupplier) { |
| 156 | - return super.exportXls(request, tblTradSupplier, TblTradSupplier.class, "tbl_trad_supplier"); | 156 | + return super.exportXls(request, tblTradSupplier, TblTradSupplier.class, "供应商信息"); |
| 157 | } | 157 | } |
| 158 | 158 | ||
| 159 | /** | 159 | /** |
| @@ -193,7 +193,7 @@ public class TblTradTenderController extends JeecgController<TblTradTender, TblT | @@ -193,7 +193,7 @@ public class TblTradTenderController extends JeecgController<TblTradTender, TblT | ||
| 193 | */ | 193 | */ |
| 194 | @RequestMapping(value = "/exportXls") | 194 | @RequestMapping(value = "/exportXls") |
| 195 | public ModelAndView exportXls(HttpServletRequest request, TblTradTender tblTradTender) { | 195 | public ModelAndView exportXls(HttpServletRequest request, TblTradTender tblTradTender) { |
| 196 | - return super.exportXls(request, tblTradTender, TblTradTender.class, "tbl_trad_tender"); | 196 | + return super.exportXls(request, tblTradTender, TblTradTender.class, "贸易中标采购信息"); |
| 197 | } | 197 | } |
| 198 | 198 | ||
| 199 | /** | 199 | /** |
| @@ -190,7 +190,7 @@ public class TblTradTouController extends JeecgController<TblTradTou, TblTradTou | @@ -190,7 +190,7 @@ public class TblTradTouController extends JeecgController<TblTradTou, TblTradTou | ||
| 190 | */ | 190 | */ |
| 191 | @RequestMapping(value = "/exportXls") | 191 | @RequestMapping(value = "/exportXls") |
| 192 | public ModelAndView exportXls(HttpServletRequest request, TblTradTou tblTradTou) { | 192 | public ModelAndView exportXls(HttpServletRequest request, TblTradTou tblTradTou) { |
| 193 | - return super.exportXls(request, tblTradTou, TblTradTou.class, "tbl_trad_tou"); | 193 | + return super.exportXls(request, tblTradTou, TblTradTou.class, "贸易投标信息"); |
| 194 | } | 194 | } |
| 195 | 195 | ||
| 196 | /** | 196 | /** |
| @@ -28,7 +28,7 @@ import org.jeecg.common.aspect.annotation.AutoLog; | @@ -28,7 +28,7 @@ import org.jeecg.common.aspect.annotation.AutoLog; | ||
| 28 | * @Date: 2024-04-15 | 28 | * @Date: 2024-04-15 |
| 29 | * @Version: V1.0 | 29 | * @Version: V1.0 |
| 30 | */ | 30 | */ |
| 31 | -@Api(tags="tbl_trad_zong") | 31 | +@Api(tags="view_trad_zong") |
| 32 | @RestController | 32 | @RestController |
| 33 | @RequestMapping("/trad/tblTradZong") | 33 | @RequestMapping("/trad/tblTradZong") |
| 34 | @Slf4j | 34 | @Slf4j |
| @@ -46,7 +46,7 @@ public class ViewTradZongController extends JeecgController<ViewTradZong, ViewTr | @@ -46,7 +46,7 @@ public class ViewTradZongController extends JeecgController<ViewTradZong, ViewTr | ||
| 46 | * @return | 46 | * @return |
| 47 | */ | 47 | */ |
| 48 | //@AutoLog(value = "tbl_trad_zong-分页列表查询") | 48 | //@AutoLog(value = "tbl_trad_zong-分页列表查询") |
| 49 | - @ApiOperation(value="tbl_trad_zong-分页列表查询", notes="tbl_trad_zong-分页列表查询") | 49 | + @ApiOperation(value="view_trad_zong-分页列表查询", notes="view_trad_zong-分页列表查询") |
| 50 | @GetMapping(value = "/list") | 50 | @GetMapping(value = "/list") |
| 51 | @Transactional(rollbackFor = Exception.class) | 51 | @Transactional(rollbackFor = Exception.class) |
| 52 | public Result<IPage<ViewTradZong>> queryPageList(ViewTradZong viewTradZong, | 52 | public Result<IPage<ViewTradZong>> queryPageList(ViewTradZong viewTradZong, |
| @@ -65,8 +65,8 @@ public class ViewTradZongController extends JeecgController<ViewTradZong, ViewTr | @@ -65,8 +65,8 @@ public class ViewTradZongController extends JeecgController<ViewTradZong, ViewTr | ||
| 65 | * @param viewTradZong | 65 | * @param viewTradZong |
| 66 | * @return | 66 | * @return |
| 67 | */ | 67 | */ |
| 68 | - @AutoLog(value = "tbl_trad_zong-添加") | ||
| 69 | - @ApiOperation(value="tbl_trad_zong-添加", notes="tbl_trad_zong-添加") | 68 | + @AutoLog(value = "view_trad_zong-添加") |
| 69 | + @ApiOperation(value="view_trad_zong-添加", notes="view_trad_zong-添加") | ||
| 70 | @PostMapping(value = "/add") | 70 | @PostMapping(value = "/add") |
| 71 | public Result<String> add(@RequestBody ViewTradZong viewTradZong) { | 71 | public Result<String> add(@RequestBody ViewTradZong viewTradZong) { |
| 72 | viewTradZongService.save(viewTradZong); | 72 | viewTradZongService.save(viewTradZong); |
| @@ -79,8 +79,8 @@ public class ViewTradZongController extends JeecgController<ViewTradZong, ViewTr | @@ -79,8 +79,8 @@ public class ViewTradZongController extends JeecgController<ViewTradZong, ViewTr | ||
| 79 | * @param viewTradZong | 79 | * @param viewTradZong |
| 80 | * @return | 80 | * @return |
| 81 | */ | 81 | */ |
| 82 | - @AutoLog(value = "tbl_trad_zong-编辑") | ||
| 83 | - @ApiOperation(value="tbl_trad_zong-编辑", notes="tbl_trad_zong-编辑") | 82 | + @AutoLog(value = "view_trad_zong-编辑") |
| 83 | + @ApiOperation(value="view_trad_zong-编辑", notes="view_trad_zong-编辑") | ||
| 84 | @RequestMapping(value = "/edit", method = {RequestMethod.PUT,RequestMethod.POST}) | 84 | @RequestMapping(value = "/edit", method = {RequestMethod.PUT,RequestMethod.POST}) |
| 85 | public Result<String> edit(@RequestBody ViewTradZong viewTradZong) { | 85 | public Result<String> edit(@RequestBody ViewTradZong viewTradZong) { |
| 86 | viewTradZongService.updateById(viewTradZong); | 86 | viewTradZongService.updateById(viewTradZong); |
| @@ -93,8 +93,8 @@ public class ViewTradZongController extends JeecgController<ViewTradZong, ViewTr | @@ -93,8 +93,8 @@ public class ViewTradZongController extends JeecgController<ViewTradZong, ViewTr | ||
| 93 | * @param id | 93 | * @param id |
| 94 | * @return | 94 | * @return |
| 95 | */ | 95 | */ |
| 96 | - @AutoLog(value = "tbl_trad_zong-通过id删除") | ||
| 97 | - @ApiOperation(value="tbl_trad_zong-通过id删除", notes="tbl_trad_zong-通过id删除") | 96 | + @AutoLog(value = "view_trad_zong-通过id删除") |
| 97 | + @ApiOperation(value="view_trad_zong-通过id删除", notes="view_trad_zong-通过id删除") | ||
| 98 | @DeleteMapping(value = "/delete") | 98 | @DeleteMapping(value = "/delete") |
| 99 | public Result<String> delete(@RequestParam(name="id",required=true) String id) { | 99 | public Result<String> delete(@RequestParam(name="id",required=true) String id) { |
| 100 | viewTradZongService.removeById(id); | 100 | viewTradZongService.removeById(id); |
| @@ -107,8 +107,8 @@ public class ViewTradZongController extends JeecgController<ViewTradZong, ViewTr | @@ -107,8 +107,8 @@ public class ViewTradZongController extends JeecgController<ViewTradZong, ViewTr | ||
| 107 | * @param ids | 107 | * @param ids |
| 108 | * @return | 108 | * @return |
| 109 | */ | 109 | */ |
| 110 | - @AutoLog(value = "tbl_trad_zong-批量删除") | ||
| 111 | - @ApiOperation(value="tbl_trad_zong-批量删除", notes="tbl_trad_zong-批量删除") | 110 | + @AutoLog(value = "view_trad_zong-批量删除") |
| 111 | + @ApiOperation(value="view_trad_zong-批量删除", notes="view_trad_zong-批量删除") | ||
| 112 | @DeleteMapping(value = "/deleteBatch") | 112 | @DeleteMapping(value = "/deleteBatch") |
| 113 | public Result<String> deleteBatch(@RequestParam(name="ids",required=true) String ids) { | 113 | public Result<String> deleteBatch(@RequestParam(name="ids",required=true) String ids) { |
| 114 | this.viewTradZongService.removeByIds(Arrays.asList(ids.split(","))); | 114 | this.viewTradZongService.removeByIds(Arrays.asList(ids.split(","))); |
| @@ -121,8 +121,8 @@ public class ViewTradZongController extends JeecgController<ViewTradZong, ViewTr | @@ -121,8 +121,8 @@ public class ViewTradZongController extends JeecgController<ViewTradZong, ViewTr | ||
| 121 | * @param id | 121 | * @param id |
| 122 | * @return | 122 | * @return |
| 123 | */ | 123 | */ |
| 124 | - //@AutoLog(value = "tbl_trad_zong-通过id查询") | ||
| 125 | - @ApiOperation(value="tbl_trad_zong-通过id查询", notes="tbl_trad_zong-通过id查询") | 124 | + //@AutoLog(value = "view_trad_zong-通过id查询") |
| 125 | + @ApiOperation(value="view_trad_zong-通过id查询", notes="view_trad_zong-通过id查询") | ||
| 126 | @GetMapping(value = "/queryById") | 126 | @GetMapping(value = "/queryById") |
| 127 | public Result<ViewTradZong> queryById(@RequestParam(name="id",required=true) String id) { | 127 | public Result<ViewTradZong> queryById(@RequestParam(name="id",required=true) String id) { |
| 128 | ViewTradZong viewTradZong = viewTradZongService.getById(id); | 128 | ViewTradZong viewTradZong = viewTradZongService.getById(id); |
| @@ -140,7 +140,7 @@ public class ViewTradZongController extends JeecgController<ViewTradZong, ViewTr | @@ -140,7 +140,7 @@ public class ViewTradZongController extends JeecgController<ViewTradZong, ViewTr | ||
| 140 | */ | 140 | */ |
| 141 | @RequestMapping(value = "/exportXls") | 141 | @RequestMapping(value = "/exportXls") |
| 142 | public ModelAndView exportXls(HttpServletRequest request, ViewTradZong viewTradZong) { | 142 | public ModelAndView exportXls(HttpServletRequest request, ViewTradZong viewTradZong) { |
| 143 | - return super.exportXls(request, viewTradZong, ViewTradZong.class, "tbl_trad_zong"); | 143 | + return super.exportXls(request, viewTradZong, ViewTradZong.class, "贸易综合信息"); |
| 144 | } | 144 | } |
| 145 | 145 | ||
| 146 | } | 146 | } |
-
请 注册 或 登录 后发表评论