From e338114af5b96b3d7686ab9b424a9076b94611d3 Mon Sep 17 00:00:00 2001 From: liusheng <337615773@qq.com> Date: 星期二, 27 二月 2024 17:45:28 +0800 Subject: [PATCH] 代码提交 --- ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceReimbursementController.java | 1 ruoyi-project/src/main/java/com/ruoyi/project/domain/ServiceDonorpayment.java | 128 ++++++ ruoyi-project/src/main/java/com/ruoyi/project/mapper/ServiceDonorpaymentMapper.java | 25 + ruoyi-project/src/main/java/com/ruoyi/project/service/IServiceDonorpaymentService.java | 24 + ruoyi-project/src/main/java/com/ruoyi/project/domain/ServiceReimbursement.java | 2 ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceDonorpaymentController.java | 103 ++++ ruoyi-project/src/main/java/com/ruoyi/project/service/impl/ServiceDonatebaseinfoServiceImpl.java | 14 velocity.log.1 | 744 +++++++++++++++++++++++++++++++++++ ruoyi-project/src/main/java/com/ruoyi/project/service/impl/ServiceFundServiceImpl.java | 65 +- ruoyi-project/src/main/resources/mapper/project/ServiceDonorpaymentMapper.xml | 53 ++ ruoyi-project/src/main/java/com/ruoyi/project/service/impl/ServiceDonorpaymentServiceImpl.java | 76 +++ 11 files changed, 1,195 insertions(+), 40 deletions(-) diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceDonorpaymentController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceDonorpaymentController.java new file mode 100644 index 0000000..ae4dfc7 --- /dev/null +++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceDonorpaymentController.java @@ -0,0 +1,103 @@ +package com.ruoyi.web.controller.project; + +import com.ruoyi.common.annotation.Log; +import com.ruoyi.common.annotation.RepeatSubmit; +import com.ruoyi.common.core.controller.BaseController; +import com.ruoyi.common.core.domain.AjaxResult; +import com.ruoyi.common.core.page.TableDataInfo; +import com.ruoyi.common.enums.BusinessType; +import com.ruoyi.common.utils.poi.ExcelUtil; +import com.ruoyi.project.domain.ServiceDonorpayment; +import com.ruoyi.project.service.IServiceDonorpaymentService; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiOperation; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.security.access.prepost.PreAuthorize; +import org.springframework.web.bind.annotation.*; + +import java.util.Arrays; +import java.util.List; + +/** + * 璐圭敤鏀舵鍗旵ontroller + * + * @author ruoyi + * @date 2024-02-27 + */ +@Api("璐圭敤鏀舵鍗�") +@RestController +@RequestMapping("/project/donorpayment") +public class ServiceDonorpaymentController extends BaseController { + @Autowired + private IServiceDonorpaymentService serviceDonorpaymentService; + + /** + * 鏌ヨ璐圭敤鏀舵鍗曞垪琛� + */ + @ApiOperation("鏌ヨ璐圭敤鏀舵鍗曞垪琛�") + @PreAuthorize("@ss.hasPermi('system:donorpayment:list')") + @GetMapping("/list") + public TableDataInfo list(ServiceDonorpayment serviceDonorpayment) { + startPage(); + List<ServiceDonorpayment> list = serviceDonorpaymentService.queryList(serviceDonorpayment); + return getDataTable(list); + } + + /** + * 瀵煎嚭璐圭敤鏀舵鍗曞垪琛� + */ + @ApiOperation("瀵煎嚭璐圭敤鏀舵鍗曞垪琛�") + @PreAuthorize("@ss.hasPermi('system:donorpayment:export')") + @Log(title = "璐圭敤鏀舵鍗�", businessType = BusinessType.EXPORT) + @GetMapping("/export") + public AjaxResult export(ServiceDonorpayment serviceDonorpayment) { + List<ServiceDonorpayment> list = serviceDonorpaymentService.queryList(serviceDonorpayment); + ExcelUtil<ServiceDonorpayment> util = new ExcelUtil<ServiceDonorpayment>(ServiceDonorpayment.class); + return util.exportExcel(list, "璐圭敤鏀舵鍗曟暟鎹�"); + } + + /** + * 鑾峰彇璐圭敤鏀舵鍗曡缁嗕俊鎭� + */ + @ApiOperation("鑾峰彇璐圭敤鏀舵鍗曡缁嗕俊鎭�") + @PreAuthorize("@ss.hasPermi('system:donorpayment:query')") + @GetMapping(value = "/getInfo/{id}") + public AjaxResult getInfo(@PathVariable("id") Long id) { + return AjaxResult.success(serviceDonorpaymentService.getById(id)); + } + + /** + * 鏂板璐圭敤鏀舵鍗� + */ + @ApiOperation("鏂板璐圭敤鏀舵鍗�") + @PreAuthorize("@ss.hasPermi('system:donorpayment:add')") + @Log(title = "璐圭敤鏀舵鍗�", businessType = BusinessType.INSERT) + @PostMapping("/add") + @RepeatSubmit + public AjaxResult add(@RequestBody ServiceDonorpayment serviceDonorpayment) { + return toAjax(serviceDonorpaymentService.save(serviceDonorpayment)); + } + + /** + * 淇敼璐圭敤鏀舵鍗� + */ + @ApiOperation("淇敼璐圭敤鏀舵鍗�") + @PreAuthorize("@ss.hasPermi('system:donorpayment:edit')") + @Log(title = "璐圭敤鏀舵鍗�", businessType = BusinessType.UPDATE) + @PostMapping("/edit") + @RepeatSubmit + public AjaxResult edit(@RequestBody ServiceDonorpayment serviceDonorpayment) { + return toAjax(serviceDonorpaymentService.updateById(serviceDonorpayment)); + } + + /** + * 鍒犻櫎璐圭敤鏀舵鍗� + */ + @ApiOperation("鍒犻櫎璐圭敤鏀舵鍗�") + @PreAuthorize("@ss.hasPermi('system:donorpayment:remove')") + @Log(title = "璐圭敤鏀舵鍗�", businessType = BusinessType.DELETE) + @GetMapping("/remove/{ids}") + public AjaxResult remove(@PathVariable Long[] ids) { + return toAjax(serviceDonorpaymentService.removeByIds(Arrays.asList(ids))); + } +} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceReimbursementController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceReimbursementController.java index 1ba54fa..35e47e0 100644 --- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceReimbursementController.java +++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceReimbursementController.java @@ -255,6 +255,7 @@ ServiceFundflowrule serviceFundflowrule = new ServiceFundflowrule(); serviceFundflowrule.setApplytype("0"); serviceFundflowrule.setMustAudite(1); + serviceFundflowrule.setDel_flag(0); List<ServiceFundflowrule> serviceFundflowrules = serviceFundflowruleService.queryList(serviceFundflowrule); log.info("reimbursement蹇呭浜虹殑绛夌骇涓猴細{}", serviceFundflowrules.get(0).getFlowlevel()); diff --git a/ruoyi-project/src/main/java/com/ruoyi/project/domain/ServiceDonorpayment.java b/ruoyi-project/src/main/java/com/ruoyi/project/domain/ServiceDonorpayment.java new file mode 100644 index 0000000..b706f3e --- /dev/null +++ b/ruoyi-project/src/main/java/com/ruoyi/project/domain/ServiceDonorpayment.java @@ -0,0 +1,128 @@ +package com.ruoyi.project.domain; + +import java.math.BigDecimal; +import java.util.Date; + +import com.fasterxml.jackson.annotation.JsonFormat; +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import com.ruoyi.common.annotation.Excel; +import com.ruoyi.common.core.domain.BaseEntity; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +/** + * 璐圭敤鏀舵鍗曞璞� service_donorpayment + * + * @author ruoyi + * @date 2024-02-27 + */ +@Data +@ApiModel("璐圭敤鏀舵鍗�") +public class ServiceDonorpayment extends BaseEntity { + private static final long serialVersionUID = 1L; + + /** + * id + */ + @ApiModelProperty("id") + //鏁版嵁搴撹嚜澧炴敼鎴怈TableId(type = IdType.AUTO) + @TableId(type = IdType.AUTO) + private Long id; + + /** + * 瀵硅处鍗曞彿 + */ + @ApiModelProperty("瀵硅处鍗曞彿") + @Excel(name = "瀵硅处鍗曞彿") + private String paymentno; + + /** + * 鍑哄崟鏃堕棿 + */ + @ApiModelProperty("鍑哄崟鏃堕棿") + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") + @Excel(name = "鍑哄崟鏃堕棿", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") + private Date paymenttime; + + /** + * 鏀舵鐘舵�侊細鏂板缓(-1)銆佸緟鏀舵锛�0锛夈�佸凡鏀舵锛�1锛� + */ + @ApiModelProperty("鏀舵鐘舵�侊細鏂板缓(-1)銆佸緟鏀舵锛�0锛夈�佸凡鏀舵锛�1锛�") + @Excel(name = "鏀舵鐘舵�侊細鏂板缓(-1)銆佸緟鏀舵", readConverterExp = "0=") + private String paystatus; + + /** + * 鑱旂郴淇℃伅 + */ + @ApiModelProperty("鑱旂郴淇℃伅") + @Excel(name = "鑱旂郴淇℃伅") + private String contactinfo; + + /** + * 鎺ユ敹鍖婚櫌鍚嶇О + */ + @ApiModelProperty("鎺ユ敹鍖婚櫌鍚嶇О") + @Excel(name = "鎺ユ敹鍖婚櫌鍚嶇О") + private String hospitalname; + + /** + * 鎺ユ敹鍖婚櫌鍚嶇О缂栧彿 + */ + @ApiModelProperty("鎺ユ敹鍖婚櫌鍚嶇О缂栧彿") + @Excel(name = "鎺ユ敹鍖婚櫌鍚嶇О缂栧彿") + private String hospitalno; + + /** + * 鎺ュ彈鍖婚櫌鑱旂郴浜� + */ + @ApiModelProperty("鎺ュ彈鍖婚櫌鑱旂郴浜�") + @Excel(name = "鎺ュ彈鍖婚櫌鑱旂郴浜�") + private String hospitalcontactinfo; + + /** + * 搴旀敹閲戦 + */ + @ApiModelProperty("搴旀敹閲戦") + @Excel(name = "搴旀敹閲戦") + private BigDecimal receivableamount; + + /** + * 鏀舵鍗曚綅 + */ + @ApiModelProperty("鏀舵鍗曚綅") + @Excel(name = "鏀舵鍗曚綅") + private String beneficiary; + + /** + * 鏀舵鍗曚綅閾惰鍚嶇О + */ + @ApiModelProperty("鏀舵鍗曚綅閾惰鍚嶇О") + @Excel(name = "鏀舵鍗曚綅閾惰鍚嶇О") + private String beneficiarybank; + + /** + * 鏀舵鍗曚綅閾惰璐︽埛 + */ + @ApiModelProperty("鏀舵鍗曚綅閾惰璐︽埛") + @Excel(name = "鏀舵鍗曚綅閾惰璐︽埛") + private String beneficiaryaccount; + + /** + * 瀹炴敹閲戦 + */ + @ApiModelProperty("瀹炴敹閲戦") + @Excel(name = "瀹炴敹閲戦") + private BigDecimal receivedamount; + + /** + * 鏀舵鏃堕棿 + */ + @ApiModelProperty("鏀舵鏃堕棿") + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") + @Excel(name = "鏀舵鏃堕棿", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") + private Date receivedtime; + +} + diff --git a/ruoyi-project/src/main/java/com/ruoyi/project/domain/ServiceReimbursement.java b/ruoyi-project/src/main/java/com/ruoyi/project/domain/ServiceReimbursement.java index c05041d..6eca98e 100644 --- a/ruoyi-project/src/main/java/com/ruoyi/project/domain/ServiceReimbursement.java +++ b/ruoyi-project/src/main/java/com/ruoyi/project/domain/ServiceReimbursement.java @@ -355,7 +355,7 @@ // private Date endtime; @ApiModelProperty("鏁版嵁鏄惁杩涘叆shared琛� 0锛氬惁 1锛氭槸") - private Integer uploadStates = 0; + private Integer uploadStates; } diff --git a/ruoyi-project/src/main/java/com/ruoyi/project/mapper/ServiceDonorpaymentMapper.java b/ruoyi-project/src/main/java/com/ruoyi/project/mapper/ServiceDonorpaymentMapper.java new file mode 100644 index 0000000..ef9dcb3 --- /dev/null +++ b/ruoyi-project/src/main/java/com/ruoyi/project/mapper/ServiceDonorpaymentMapper.java @@ -0,0 +1,25 @@ +package com.ruoyi.project.mapper; + + +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import com.ruoyi.project.domain.ServiceDonorpayment; +import org.apache.ibatis.annotations.Mapper; + +import java.util.List; + +/** + * 璐圭敤鏀舵鍗昅apper鎺ュ彛 + * + * @author ruoyi + * @date 2024-02-27 + */ +@Mapper +public interface ServiceDonorpaymentMapper extends BaseMapper<ServiceDonorpayment> { + /** + * 鏌ヨ璐圭敤鏀舵鍗曞垪琛� + * + * @param serviceDonorpayment 璐圭敤鏀舵鍗� + * @return 璐圭敤鏀舵鍗曢泦鍚� + */ + public List<ServiceDonorpayment> selectServiceDonorpaymentList(ServiceDonorpayment serviceDonorpayment); +} diff --git a/ruoyi-project/src/main/java/com/ruoyi/project/service/IServiceDonorpaymentService.java b/ruoyi-project/src/main/java/com/ruoyi/project/service/IServiceDonorpaymentService.java new file mode 100644 index 0000000..9f8f66d --- /dev/null +++ b/ruoyi-project/src/main/java/com/ruoyi/project/service/IServiceDonorpaymentService.java @@ -0,0 +1,24 @@ +package com.ruoyi.project.service; + +import com.baomidou.mybatisplus.extension.service.IService; +import com.ruoyi.project.domain.ServiceDonorpayment; + +import java.util.List; + +/** + * 璐圭敤鏀舵鍗昐ervice鎺ュ彛 + * + * @author ruoyi + * @date 2024-02-27 + */ +public interface IServiceDonorpaymentService extends IService<ServiceDonorpayment> +{ + + /** + * 鏌ヨ璐圭敤鏀舵鍗曞垪琛� + * + * @param serviceDonorpayment 璐圭敤鏀舵鍗� + * @return 璐圭敤鏀舵鍗曢泦鍚� + */ + public List<ServiceDonorpayment> queryList(ServiceDonorpayment serviceDonorpayment); +} diff --git a/ruoyi-project/src/main/java/com/ruoyi/project/service/impl/ServiceDonatebaseinfoServiceImpl.java b/ruoyi-project/src/main/java/com/ruoyi/project/service/impl/ServiceDonatebaseinfoServiceImpl.java index da479a1..2acbe3e 100644 --- a/ruoyi-project/src/main/java/com/ruoyi/project/service/impl/ServiceDonatebaseinfoServiceImpl.java +++ b/ruoyi-project/src/main/java/com/ruoyi/project/service/impl/ServiceDonatebaseinfoServiceImpl.java @@ -54,8 +54,10 @@ @Autowired private IServiceRelativesconfirmationService serviceRelativesconfirmationService; + // @Autowired +// private IServiceDonateflowchartService iServiceDonateflowchartService; @Autowired - private IServiceDonateflowchartService iServiceDonateflowchartService; + private IServiceEthicalreviewopinionsService iServiceEthicalreviewopinionsService; @Autowired private IServiceOrganallocationService serviceOrganallocationService; @@ -316,12 +318,12 @@ //灏佽浼︾悊瀹℃煡 Map<String, String> donateflowcharts = new HashMap<>(); if (serviceDonatebaseinfo.getWorkflow() >= 3) { - ServiceDonateflowchart serviceDonateflowchart = new ServiceDonateflowchart(); + ServiceEthicalreviewopinions serviceDonateflowchart = new ServiceEthicalreviewopinions(); serviceDonateflowchart.setInfoid(id); - List<ServiceDonateflowchart> serviceDonateflowcharts = iServiceDonateflowchartService.queryList(serviceDonateflowchart); - if (!CollectionUtils.isEmpty(serviceDonateflowcharts)) { - donateflowcharts.put("createtime", DateUtils.parseDateToStr("yyyy-MM-dd HH:mm:ss", serviceDonateflowcharts.get(0).getCreateTime())); - donateflowcharts.put("updatetime", serviceDonateflowcharts.get(0).getUpdateTime() != null ? DateUtils.parseDateToStr("yyyy-MM-dd HH:mm:ss", serviceDonateflowcharts.get(0).getUpdateTime()) : ""); + List<ServiceEthicalreviewopinions> serviceEthicalreviewopinionsList = iServiceEthicalreviewopinionsService.queryList(serviceDonateflowchart); + if (!CollectionUtils.isEmpty(serviceEthicalreviewopinionsList)) { + donateflowcharts.put("createtime", DateUtils.parseDateToStr("yyyy-MM-dd HH:mm:ss", serviceEthicalreviewopinionsList.get(0).getCreateTime())); + donateflowcharts.put("updatetime", serviceEthicalreviewopinionsList.get(0).getUpdateTime() != null ? DateUtils.parseDateToStr("yyyy-MM-dd HH:mm:ss", serviceEthicalreviewopinionsList.get(0).getUpdateTime()) : ""); donateflowcharts.put("process", ""); } } diff --git a/ruoyi-project/src/main/java/com/ruoyi/project/service/impl/ServiceDonorpaymentServiceImpl.java b/ruoyi-project/src/main/java/com/ruoyi/project/service/impl/ServiceDonorpaymentServiceImpl.java new file mode 100644 index 0000000..6910314 --- /dev/null +++ b/ruoyi-project/src/main/java/com/ruoyi/project/service/impl/ServiceDonorpaymentServiceImpl.java @@ -0,0 +1,76 @@ +package com.ruoyi.project.service.impl; + +import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; +import com.baomidou.mybatisplus.core.toolkit.Wrappers; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import com.ruoyi.common.utils.StringUtils; +import com.ruoyi.project.domain.ServiceDonorpayment; +import com.ruoyi.project.mapper.ServiceDonorpaymentMapper; +import com.ruoyi.project.service.IServiceDonorpaymentService; +import org.springframework.stereotype.Service; + +import java.util.List; + +/** + * 璐圭敤鏀舵鍗昐ervice涓氬姟灞傚鐞� + * + * @author ruoyi + * @date 2024-02-27 + */ +@Service +public class ServiceDonorpaymentServiceImpl extends ServiceImpl<ServiceDonorpaymentMapper, ServiceDonorpayment> implements IServiceDonorpaymentService +{ + + + /** + * 鏌ヨ璐圭敤鏀舵鍗曞垪琛� + * + * @param serviceDonorpayment 璐圭敤鏀舵鍗� + * @return 璐圭敤鏀舵鍗� + */ + @Override + public List<ServiceDonorpayment> queryList(ServiceDonorpayment serviceDonorpayment) { + LambdaQueryWrapper<ServiceDonorpayment> wrappers = Wrappers.lambdaQuery(); + if (StringUtils.isNotBlank(serviceDonorpayment.getPaymentno())){ + wrappers.eq(ServiceDonorpayment::getPaymentno ,serviceDonorpayment.getPaymentno()); + } + if (serviceDonorpayment.getPaymenttime() != null){ + wrappers.eq(ServiceDonorpayment::getPaymenttime ,serviceDonorpayment.getPaymenttime()); + } + if (StringUtils.isNotBlank(serviceDonorpayment.getPaystatus())){ + wrappers.eq(ServiceDonorpayment::getPaystatus ,serviceDonorpayment.getPaystatus()); + } + if (StringUtils.isNotBlank(serviceDonorpayment.getContactinfo())){ + wrappers.eq(ServiceDonorpayment::getContactinfo ,serviceDonorpayment.getContactinfo()); + } + if (StringUtils.isNotBlank(serviceDonorpayment.getHospitalname())){ + wrappers.eq(ServiceDonorpayment::getHospitalname ,serviceDonorpayment.getHospitalname()); + } + if (StringUtils.isNotBlank(serviceDonorpayment.getHospitalno())){ + wrappers.eq(ServiceDonorpayment::getHospitalno ,serviceDonorpayment.getHospitalno()); + } + if (StringUtils.isNotBlank(serviceDonorpayment.getHospitalcontactinfo())){ + wrappers.eq(ServiceDonorpayment::getHospitalcontactinfo ,serviceDonorpayment.getHospitalcontactinfo()); + } + if (serviceDonorpayment.getReceivableamount() != null){ + wrappers.eq(ServiceDonorpayment::getReceivableamount ,serviceDonorpayment.getReceivableamount()); + } + if (StringUtils.isNotBlank(serviceDonorpayment.getBeneficiary())){ + wrappers.eq(ServiceDonorpayment::getBeneficiary ,serviceDonorpayment.getBeneficiary()); + } + if (StringUtils.isNotBlank(serviceDonorpayment.getBeneficiarybank())){ + wrappers.eq(ServiceDonorpayment::getBeneficiarybank ,serviceDonorpayment.getBeneficiarybank()); + } + if (StringUtils.isNotBlank(serviceDonorpayment.getBeneficiaryaccount())){ + wrappers.eq(ServiceDonorpayment::getBeneficiaryaccount ,serviceDonorpayment.getBeneficiaryaccount()); + } + if (serviceDonorpayment.getReceivedamount() != null){ + wrappers.eq(ServiceDonorpayment::getReceivedamount ,serviceDonorpayment.getReceivedamount()); + } + if (serviceDonorpayment.getReceivedtime() != null){ + wrappers.eq(ServiceDonorpayment::getReceivedtime ,serviceDonorpayment.getReceivedtime()); + } + return this.list(wrappers); + } + +} diff --git a/ruoyi-project/src/main/java/com/ruoyi/project/service/impl/ServiceFundServiceImpl.java b/ruoyi-project/src/main/java/com/ruoyi/project/service/impl/ServiceFundServiceImpl.java index 758c8cc..d847f3c 100644 --- a/ruoyi-project/src/main/java/com/ruoyi/project/service/impl/ServiceFundServiceImpl.java +++ b/ruoyi-project/src/main/java/com/ruoyi/project/service/impl/ServiceFundServiceImpl.java @@ -701,44 +701,43 @@ id = saveFund(serviceFundVO); List<ServiceFunddetailVO> serviceFunddetails = serviceFundVO.getServiceFunddetails(); - if (CollectionUtils.isEmpty(serviceFunddetails)) { - throw new BaseException("serviceFunddetails涓虹┖鍠�"); - } BigDecimal bigDecimal = new BigDecimal(0.0); - // 淇濆瓨璇︽儏鏁版嵁 - for (ServiceFunddetailVO serviceFunddetailVO : serviceFunddetails) { - //鍘绘帀韬唤璇佺殑棣栧熬绌烘牸 - if (StringUtils.isNotEmpty(serviceFunddetailVO.getIdcardno())) { - serviceFunddetailVO.setIdcardno(serviceFunddetailVO.getIdcardno().trim()); - } + if (!CollectionUtils.isEmpty(serviceFunddetails)) { - if (StringUtils.isEmpty(serviceFunddetailVO.getBankcardno())) { - throw new BaseException("璇锋鏌ラ摱琛屽崱鍙锋槸鍚︿负绌�,濮撳悕锛�" + serviceFunddetailVO.getBeneficiaryname()); - } - serviceFunddetailVO.setFundid(id); - //灏囬檮浠惰浆鎴恓son - if (!CollectionUtils.isEmpty(serviceFunddetailVO.getAnnexfilesList())) { - serviceFunddetailVO.setAnnexfiles(JSON.toJSONString(serviceFunddetailVO.getAnnexfilesList())); - } else { - serviceFunddetailVO.setAnnexfiles(null); - } - if (!CollectionUtils.isEmpty(serviceFunddetailVO.getInvoicefilesList())) { - serviceFunddetailVO.setInvoicefiles(JSON.toJSONString(serviceFunddetailVO.getInvoicefilesList())); - } else { - serviceFunddetailVO.setInvoicefiles(null); - } - ServiceFunddetail serviceFunddetail = DtoConversionUtils.sourceToTarget(serviceFunddetailVO, ServiceFunddetail.class); + // 淇濆瓨璇︽儏鏁版嵁 + for (ServiceFunddetailVO serviceFunddetailVO : serviceFunddetails) { + //鍘绘帀韬唤璇佺殑棣栧熬绌烘牸 + if (StringUtils.isNotEmpty(serviceFunddetailVO.getIdcardno())) { + serviceFunddetailVO.setIdcardno(serviceFunddetailVO.getIdcardno().trim()); + } - if (serviceFunddetailVO.getId() == null) { - serviceFunddetailService.save(serviceFunddetail); - } else { - serviceFunddetailService.updateById(serviceFunddetail); + if (StringUtils.isEmpty(serviceFunddetailVO.getBankcardno())) { + throw new BaseException("璇锋鏌ラ摱琛屽崱鍙锋槸鍚︿负绌�,濮撳悕锛�" + serviceFunddetailVO.getBeneficiaryname()); + } + serviceFunddetailVO.setFundid(id); + //灏囬檮浠惰浆鎴恓son + if (!CollectionUtils.isEmpty(serviceFunddetailVO.getAnnexfilesList())) { + serviceFunddetailVO.setAnnexfiles(JSON.toJSONString(serviceFunddetailVO.getAnnexfilesList())); + } else { + serviceFunddetailVO.setAnnexfiles(null); + } + if (!CollectionUtils.isEmpty(serviceFunddetailVO.getInvoicefilesList())) { + serviceFunddetailVO.setInvoicefiles(JSON.toJSONString(serviceFunddetailVO.getInvoicefilesList())); + } else { + serviceFunddetailVO.setInvoicefiles(null); + } + ServiceFunddetail serviceFunddetail = DtoConversionUtils.sourceToTarget(serviceFunddetailVO, ServiceFunddetail.class); + + if (serviceFunddetailVO.getId() == null) { + serviceFunddetailService.save(serviceFunddetail); + } else { + serviceFunddetailService.updateById(serviceFunddetail); + } + + bigDecimal = bigDecimal.add(BigDecimal.valueOf(serviceFunddetailVO.getAmount())); + } - - bigDecimal = bigDecimal.add(BigDecimal.valueOf(serviceFunddetailVO.getAmount())); - - } serviceFundVO.setPretaxcost(bigDecimal.doubleValue()); serviceFundMapper.updateById(serviceFundVO); diff --git a/ruoyi-project/src/main/resources/mapper/project/ServiceDonorpaymentMapper.xml b/ruoyi-project/src/main/resources/mapper/project/ServiceDonorpaymentMapper.xml new file mode 100644 index 0000000..3393f7b --- /dev/null +++ b/ruoyi-project/src/main/resources/mapper/project/ServiceDonorpaymentMapper.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<!DOCTYPE mapper +PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" +"http://mybatis.org/dtd/mybatis-3-mapper.dtd"> +<mapper namespace="com.ruoyi.project.mapper.ServiceDonorpaymentMapper"> + + <resultMap type="com.ruoyi.project.domain.ServiceDonorpayment" id="ServiceDonorpaymentResult"> + <result property="id" column="id" /> + <result property="paymentno" column="paymentno" /> + <result property="paymenttime" column="paymenttime" /> + <result property="paystatus" column="paystatus" /> + <result property="contactinfo" column="contactinfo" /> + <result property="hospitalname" column="hospitalname" /> + <result property="hospitalno" column="hospitalno" /> + <result property="hospitalcontactinfo" column="hospitalcontactinfo" /> + <result property="receivableamount" column="receivableamount" /> + <result property="beneficiary" column="beneficiary" /> + <result property="beneficiarybank" column="beneficiarybank" /> + <result property="beneficiaryaccount" column="beneficiaryaccount" /> + <result property="receivedamount" column="receivedamount" /> + <result property="receivedtime" column="receivedtime" /> + <result property="remark" column="remark" /> + <result property="delFlag" column="del_flag" /> + <result property="createBy" column="create_by" /> + <result property="createTime" column="create_time" /> + <result property="updateBy" column="update_by" /> + <result property="updateTime" column="update_time" /> + </resultMap> + + <sql id="selectServiceDonorpaymentVo"> + select id, paymentno, paymenttime, paystatus, contactinfo, hospitalname, hospitalno, hospitalcontactinfo, receivableamount, beneficiary, beneficiarybank, beneficiaryaccount, receivedamount, receivedtime, remark, del_flag, create_by, create_time, update_by, update_time from service_donorpayment + </sql> + + <select id="selectServiceDonorpaymentList" parameterType="com.ruoyi.project.domain.ServiceDonorpayment" resultMap="ServiceDonorpaymentResult"> + <include refid="selectServiceDonorpaymentVo"/> + <where> + <if test="paymentno != null and paymentno != ''"> and paymentno = #{paymentno}</if> + <if test="paymenttime != null "> and paymenttime = #{paymenttime}</if> + <if test="paystatus != null and paystatus != ''"> and paystatus = #{paystatus}</if> + <if test="contactinfo != null and contactinfo != ''"> and contactinfo = #{contactinfo}</if> + <if test="hospitalname != null "> and hospitalname like concat('%', #{hospitalname}, '%')</if> + <if test="hospitalno != null and hospitalno != ''"> and hospitalno = #{hospitalno}</if> + <if test="hospitalcontactinfo != null and hospitalcontactinfo != ''"> and hospitalcontactinfo = #{hospitalcontactinfo}</if> + <if test="receivableamount != null "> and receivableamount = #{receivableamount}</if> + <if test="beneficiary != null and beneficiary != ''"> and beneficiary = #{beneficiary}</if> + <if test="beneficiarybank != null and beneficiarybank != ''"> and beneficiarybank = #{beneficiarybank}</if> + <if test="beneficiaryaccount != null and beneficiaryaccount != ''"> and beneficiaryaccount = #{beneficiaryaccount}</if> + <if test="receivedamount != null "> and receivedamount = #{receivedamount}</if> + <if test="receivedtime != null "> and receivedtime = #{receivedtime}</if> + </where> + </select> + +</mapper> \ No newline at end of file diff --git a/velocity.log.1 b/velocity.log.1 new file mode 100644 index 0000000..e201272 --- /dev/null +++ b/velocity.log.1 @@ -0,0 +1,744 @@ +2023-08-31 10:55:48,768 - Log4JLogChute initialized using file 'velocity.log' +2023-08-31 10:55:48,768 - Initializing Velocity, Calling init()... +2023-08-31 10:55:48,769 - Starting Apache Velocity v1.7 (compiled: 2010-11-19 12:14:37) +2023-08-31 10:55:48,769 - Default Properties File: org\apache\velocity\runtime\defaults\velocity.properties +2023-08-31 10:55:48,769 - Trying to use logger class org.apache.velocity.runtime.log.AvalonLogChute +2023-08-31 10:55:48,769 - Target log system for org.apache.velocity.runtime.log.AvalonLogChute is not available (java.lang.NoClassDefFoundError: org/apache/log/Priority). Falling back to next log system... +2023-08-31 10:55:48,769 - Trying to use logger class org.apache.velocity.runtime.log.Log4JLogChute +2023-08-31 10:55:48,770 - Using logger class org.apache.velocity.runtime.log.Log4JLogChute +2023-08-31 10:55:48,773 - ResourceLoader instantiated: org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-08-31 10:55:48,779 - ResourceCache: initialized (class org.apache.velocity.runtime.resource.ResourceCacheImpl) with class java.util.Collections$SynchronizedMap cache map. +2023-08-31 10:55:48,781 - Loaded System Directive: org.apache.velocity.runtime.directive.Stop +2023-08-31 10:55:48,782 - Loaded System Directive: org.apache.velocity.runtime.directive.Define +2023-08-31 10:55:48,782 - Loaded System Directive: org.apache.velocity.runtime.directive.Break +2023-08-31 10:55:48,783 - Loaded System Directive: org.apache.velocity.runtime.directive.Evaluate +2023-08-31 10:55:48,783 - Loaded System Directive: org.apache.velocity.runtime.directive.Literal +2023-08-31 10:55:48,784 - Loaded System Directive: org.apache.velocity.runtime.directive.Macro +2023-08-31 10:55:48,785 - Loaded System Directive: org.apache.velocity.runtime.directive.Parse +2023-08-31 10:55:48,785 - Loaded System Directive: org.apache.velocity.runtime.directive.Include +2023-08-31 10:55:48,786 - Loaded System Directive: org.apache.velocity.runtime.directive.Foreach +2023-08-31 10:55:48,794 - Created '20' parsers. +2023-08-31 10:55:48,795 - Velocimacro : "velocimacro.library" is not set. Trying default library: VM_global_library.vm +2023-08-31 10:55:48,797 - Could not load resource 'VM_global_library.vm' from ResourceLoader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader: ClasspathResourceLoader Error: cannot find resource VM_global_library.vm +2023-08-31 10:55:48,797 - Velocimacro : Default library not found. +2023-08-31 10:55:48,797 - Velocimacro : allowInline = true : VMs can be defined inline in templates +2023-08-31 10:55:48,797 - Velocimacro : allowInlineToOverride = false : VMs defined inline may NOT replace previous VM definitions +2023-08-31 10:55:48,797 - Velocimacro : allowInlineLocal = false : VMs defined inline will be global in scope if allowed. +2023-08-31 10:55:48,797 - Velocimacro : autoload off : VM system will not automatically reload global library macros +2023-08-31 10:55:48,820 - ResourceManager : found vm/java/domain.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-08-31 10:55:48,828 - Null reference [template 'vm/java/domain.java.vm', line 37, column 9] : $column.columnComment cannot be resolved. +2023-08-31 10:55:48,829 - Null reference [template 'vm/java/domain.java.vm', line 38, column 24] : $column.columnComment cannot be resolved. +2023-08-31 10:55:48,836 - ResourceManager : found vm/java/mapper.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-08-31 10:55:48,837 - ResourceManager : found vm/java/service.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-08-31 10:55:48,842 - ResourceManager : found vm/java/serviceImpl.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-08-31 10:55:48,845 - ResourceManager : found vm/java/controller.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-08-31 10:55:48,848 - ResourceManager : found vm/xml/mapper.xml.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-08-31 10:55:48,850 - ResourceManager : found vm/sql/sql.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-08-31 10:55:48,851 - ResourceManager : found vm/js/api.js.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-08-31 10:55:48,862 - ResourceManager : found vm/vue/index.vue.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-08-31 10:55:48,863 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 123, column 1] +2023-08-31 10:55:48,863 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 127, column 1] +2023-08-31 11:00:28,816 - ResourceManager : found vm/java/domain.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-08-31 11:00:28,817 - Null reference [template 'vm/java/domain.java.vm', line 37, column 9] : $column.columnComment cannot be resolved. +2023-08-31 11:00:28,817 - Null reference [template 'vm/java/domain.java.vm', line 38, column 24] : $column.columnComment cannot be resolved. +2023-08-31 11:00:28,819 - ResourceManager : found vm/java/mapper.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-08-31 11:00:28,820 - ResourceManager : found vm/java/service.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-08-31 11:00:28,822 - ResourceManager : found vm/java/serviceImpl.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-08-31 11:00:28,825 - ResourceManager : found vm/java/controller.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-08-31 11:00:28,828 - ResourceManager : found vm/xml/mapper.xml.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-08-31 11:00:28,829 - ResourceManager : found vm/sql/sql.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-08-31 11:00:28,830 - ResourceManager : found vm/js/api.js.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-08-31 11:00:28,840 - ResourceManager : found vm/vue/index.vue.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-08-31 11:00:28,841 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 123, column 1] +2023-08-31 11:00:28,841 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 127, column 1] +2023-10-08 18:18:01,366 - Log4JLogChute initialized using file 'velocity.log' +2023-10-08 18:18:01,367 - Initializing Velocity, Calling init()... +2023-10-08 18:18:01,367 - Starting Apache Velocity v1.7 (compiled: 2010-11-19 12:14:37) +2023-10-08 18:18:01,367 - Default Properties File: org\apache\velocity\runtime\defaults\velocity.properties +2023-10-08 18:18:01,367 - Trying to use logger class org.apache.velocity.runtime.log.AvalonLogChute +2023-10-08 18:18:01,367 - Target log system for org.apache.velocity.runtime.log.AvalonLogChute is not available (java.lang.NoClassDefFoundError: org/apache/log/Priority). Falling back to next log system... +2023-10-08 18:18:01,368 - Trying to use logger class org.apache.velocity.runtime.log.Log4JLogChute +2023-10-08 18:18:01,368 - Using logger class org.apache.velocity.runtime.log.Log4JLogChute +2023-10-08 18:18:01,370 - ResourceLoader instantiated: org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-08 18:18:01,376 - ResourceCache: initialized (class org.apache.velocity.runtime.resource.ResourceCacheImpl) with class java.util.Collections$SynchronizedMap cache map. +2023-10-08 18:18:01,378 - Loaded System Directive: org.apache.velocity.runtime.directive.Stop +2023-10-08 18:18:01,379 - Loaded System Directive: org.apache.velocity.runtime.directive.Define +2023-10-08 18:18:01,379 - Loaded System Directive: org.apache.velocity.runtime.directive.Break +2023-10-08 18:18:01,380 - Loaded System Directive: org.apache.velocity.runtime.directive.Evaluate +2023-10-08 18:18:01,380 - Loaded System Directive: org.apache.velocity.runtime.directive.Literal +2023-10-08 18:18:01,381 - Loaded System Directive: org.apache.velocity.runtime.directive.Macro +2023-10-08 18:18:01,382 - Loaded System Directive: org.apache.velocity.runtime.directive.Parse +2023-10-08 18:18:01,382 - Loaded System Directive: org.apache.velocity.runtime.directive.Include +2023-10-08 18:18:01,383 - Loaded System Directive: org.apache.velocity.runtime.directive.Foreach +2023-10-08 18:18:01,391 - Created '20' parsers. +2023-10-08 18:18:01,392 - Velocimacro : "velocimacro.library" is not set. Trying default library: VM_global_library.vm +2023-10-08 18:18:01,394 - Could not load resource 'VM_global_library.vm' from ResourceLoader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader: ClasspathResourceLoader Error: cannot find resource VM_global_library.vm +2023-10-08 18:18:01,394 - Velocimacro : Default library not found. +2023-10-08 18:18:01,394 - Velocimacro : allowInline = true : VMs can be defined inline in templates +2023-10-08 18:18:01,394 - Velocimacro : allowInlineToOverride = false : VMs defined inline may NOT replace previous VM definitions +2023-10-08 18:18:01,394 - Velocimacro : allowInlineLocal = false : VMs defined inline will be global in scope if allowed. +2023-10-08 18:18:01,394 - Velocimacro : autoload off : VM system will not automatically reload global library macros +2023-10-08 18:18:01,415 - ResourceManager : found vm/java/domain.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-08 18:18:01,423 - Null reference [template 'vm/java/domain.java.vm', line 37, column 9] : $column.columnComment cannot be resolved. +2023-10-08 18:18:01,423 - Null reference [template 'vm/java/domain.java.vm', line 38, column 24] : $column.columnComment cannot be resolved. +2023-10-08 18:18:01,430 - ResourceManager : found vm/java/mapper.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-08 18:18:01,431 - ResourceManager : found vm/java/service.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-08 18:18:01,434 - ResourceManager : found vm/java/serviceImpl.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-08 18:18:01,437 - ResourceManager : found vm/java/controller.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-08 18:18:01,440 - ResourceManager : found vm/xml/mapper.xml.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-08 18:18:01,442 - ResourceManager : found vm/sql/sql.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-08 18:18:01,443 - ResourceManager : found vm/js/api.js.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-08 18:18:01,454 - ResourceManager : found vm/vue/index.vue.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-08 18:18:01,456 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 123, column 1] +2023-10-08 18:18:01,457 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 127, column 1] +2023-10-10 21:29:54,328 - Log4JLogChute initialized using file 'velocity.log' +2023-10-10 21:29:54,329 - Initializing Velocity, Calling init()... +2023-10-10 21:29:54,329 - Starting Apache Velocity v1.7 (compiled: 2010-11-19 12:14:37) +2023-10-10 21:29:54,329 - Default Properties File: org\apache\velocity\runtime\defaults\velocity.properties +2023-10-10 21:29:54,329 - Trying to use logger class org.apache.velocity.runtime.log.AvalonLogChute +2023-10-10 21:29:54,329 - Target log system for org.apache.velocity.runtime.log.AvalonLogChute is not available (java.lang.NoClassDefFoundError: org/apache/log/Priority). Falling back to next log system... +2023-10-10 21:29:54,329 - Trying to use logger class org.apache.velocity.runtime.log.Log4JLogChute +2023-10-10 21:29:54,329 - Using logger class org.apache.velocity.runtime.log.Log4JLogChute +2023-10-10 21:29:54,333 - ResourceLoader instantiated: org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-10 21:29:54,340 - ResourceCache: initialized (class org.apache.velocity.runtime.resource.ResourceCacheImpl) with class java.util.Collections$SynchronizedMap cache map. +2023-10-10 21:29:54,342 - Loaded System Directive: org.apache.velocity.runtime.directive.Stop +2023-10-10 21:29:54,343 - Loaded System Directive: org.apache.velocity.runtime.directive.Define +2023-10-10 21:29:54,343 - Loaded System Directive: org.apache.velocity.runtime.directive.Break +2023-10-10 21:29:54,344 - Loaded System Directive: org.apache.velocity.runtime.directive.Evaluate +2023-10-10 21:29:54,344 - Loaded System Directive: org.apache.velocity.runtime.directive.Literal +2023-10-10 21:29:54,345 - Loaded System Directive: org.apache.velocity.runtime.directive.Macro +2023-10-10 21:29:54,346 - Loaded System Directive: org.apache.velocity.runtime.directive.Parse +2023-10-10 21:29:54,347 - Loaded System Directive: org.apache.velocity.runtime.directive.Include +2023-10-10 21:29:54,347 - Loaded System Directive: org.apache.velocity.runtime.directive.Foreach +2023-10-10 21:29:54,355 - Created '20' parsers. +2023-10-10 21:29:54,357 - Velocimacro : "velocimacro.library" is not set. Trying default library: VM_global_library.vm +2023-10-10 21:29:54,360 - Could not load resource 'VM_global_library.vm' from ResourceLoader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader: ClasspathResourceLoader Error: cannot find resource VM_global_library.vm +2023-10-10 21:29:54,360 - Velocimacro : Default library not found. +2023-10-10 21:29:54,360 - Velocimacro : allowInline = true : VMs can be defined inline in templates +2023-10-10 21:29:54,360 - Velocimacro : allowInlineToOverride = false : VMs defined inline may NOT replace previous VM definitions +2023-10-10 21:29:54,360 - Velocimacro : allowInlineLocal = false : VMs defined inline will be global in scope if allowed. +2023-10-10 21:29:54,360 - Velocimacro : autoload off : VM system will not automatically reload global library macros +2023-10-10 21:29:54,382 - ResourceManager : found vm/java/domain.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-10 21:29:54,388 - Null reference [template 'vm/java/domain.java.vm', line 37, column 9] : $column.columnComment cannot be resolved. +2023-10-10 21:29:54,388 - Null reference [template 'vm/java/domain.java.vm', line 38, column 24] : $column.columnComment cannot be resolved. +2023-10-10 21:29:54,396 - ResourceManager : found vm/java/mapper.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-10 21:29:54,397 - ResourceManager : found vm/java/service.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-10 21:29:54,402 - ResourceManager : found vm/java/serviceImpl.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-10 21:29:54,406 - ResourceManager : found vm/java/controller.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-10 21:29:54,408 - ResourceManager : found vm/xml/mapper.xml.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-10 21:29:54,410 - ResourceManager : found vm/sql/sql.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-10 21:29:54,412 - ResourceManager : found vm/js/api.js.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-10 21:29:54,425 - ResourceManager : found vm/vue/index.vue.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-10 21:29:54,427 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 123, column 1] +2023-10-10 21:29:54,427 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 127, column 1] +2023-10-10 22:00:49,072 - ResourceManager : found vm/java/domain.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-10 22:00:49,073 - Null reference [template 'vm/java/domain.java.vm', line 37, column 9] : $column.columnComment cannot be resolved. +2023-10-10 22:00:49,073 - Null reference [template 'vm/java/domain.java.vm', line 38, column 24] : $column.columnComment cannot be resolved. +2023-10-10 22:00:49,075 - ResourceManager : found vm/java/mapper.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-10 22:00:49,076 - ResourceManager : found vm/java/service.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-10 22:00:49,078 - ResourceManager : found vm/java/serviceImpl.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-10 22:00:49,080 - ResourceManager : found vm/java/controller.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-10 22:00:49,084 - ResourceManager : found vm/xml/mapper.xml.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-10 22:00:49,085 - ResourceManager : found vm/sql/sql.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-10 22:00:49,086 - ResourceManager : found vm/js/api.js.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-10 22:00:49,095 - ResourceManager : found vm/vue/index.vue.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-10 22:00:49,096 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 123, column 1] +2023-10-10 22:00:49,096 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 127, column 1] +2023-10-10 22:01:16,216 - ResourceManager : found vm/java/domain.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-10 22:01:16,216 - Null reference [template 'vm/java/domain.java.vm', line 37, column 9] : $column.columnComment cannot be resolved. +2023-10-10 22:01:16,216 - Null reference [template 'vm/java/domain.java.vm', line 38, column 24] : $column.columnComment cannot be resolved. +2023-10-10 22:01:16,217 - ResourceManager : found vm/java/mapper.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-10 22:01:16,218 - ResourceManager : found vm/java/service.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-10 22:01:16,219 - ResourceManager : found vm/java/serviceImpl.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-10 22:01:16,222 - ResourceManager : found vm/java/controller.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-10 22:01:16,224 - ResourceManager : found vm/xml/mapper.xml.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-10 22:01:16,225 - ResourceManager : found vm/sql/sql.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-10 22:01:16,226 - ResourceManager : found vm/js/api.js.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-10 22:01:16,235 - ResourceManager : found vm/vue/index.vue.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-10 22:01:16,235 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 123, column 1] +2023-10-10 22:01:16,235 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 127, column 1] +2023-10-17 15:42:08,563 - Log4JLogChute initialized using file 'velocity.log' +2023-10-17 15:42:08,565 - Initializing Velocity, Calling init()... +2023-10-17 15:42:08,565 - Starting Apache Velocity v1.7 (compiled: 2010-11-19 12:14:37) +2023-10-17 15:42:08,565 - Default Properties File: org\apache\velocity\runtime\defaults\velocity.properties +2023-10-17 15:42:08,565 - Trying to use logger class org.apache.velocity.runtime.log.AvalonLogChute +2023-10-17 15:42:08,565 - Target log system for org.apache.velocity.runtime.log.AvalonLogChute is not available (java.lang.NoClassDefFoundError: org/apache/log/Priority). Falling back to next log system... +2023-10-17 15:42:08,565 - Trying to use logger class org.apache.velocity.runtime.log.Log4JLogChute +2023-10-17 15:42:08,565 - Using logger class org.apache.velocity.runtime.log.Log4JLogChute +2023-10-17 15:42:08,568 - ResourceLoader instantiated: org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-17 15:42:08,574 - ResourceCache: initialized (class org.apache.velocity.runtime.resource.ResourceCacheImpl) with class java.util.Collections$SynchronizedMap cache map. +2023-10-17 15:42:08,575 - Loaded System Directive: org.apache.velocity.runtime.directive.Stop +2023-10-17 15:42:08,576 - Loaded System Directive: org.apache.velocity.runtime.directive.Define +2023-10-17 15:42:08,577 - Loaded System Directive: org.apache.velocity.runtime.directive.Break +2023-10-17 15:42:08,577 - Loaded System Directive: org.apache.velocity.runtime.directive.Evaluate +2023-10-17 15:42:08,578 - Loaded System Directive: org.apache.velocity.runtime.directive.Literal +2023-10-17 15:42:08,578 - Loaded System Directive: org.apache.velocity.runtime.directive.Macro +2023-10-17 15:42:08,579 - Loaded System Directive: org.apache.velocity.runtime.directive.Parse +2023-10-17 15:42:08,580 - Loaded System Directive: org.apache.velocity.runtime.directive.Include +2023-10-17 15:42:08,580 - Loaded System Directive: org.apache.velocity.runtime.directive.Foreach +2023-10-17 15:42:08,588 - Created '20' parsers. +2023-10-17 15:42:08,590 - Velocimacro : "velocimacro.library" is not set. Trying default library: VM_global_library.vm +2023-10-17 15:42:08,592 - Could not load resource 'VM_global_library.vm' from ResourceLoader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader: ClasspathResourceLoader Error: cannot find resource VM_global_library.vm +2023-10-17 15:42:08,592 - Velocimacro : Default library not found. +2023-10-17 15:42:08,592 - Velocimacro : allowInline = true : VMs can be defined inline in templates +2023-10-17 15:42:08,592 - Velocimacro : allowInlineToOverride = false : VMs defined inline may NOT replace previous VM definitions +2023-10-17 15:42:08,592 - Velocimacro : allowInlineLocal = false : VMs defined inline will be global in scope if allowed. +2023-10-17 15:42:08,592 - Velocimacro : autoload off : VM system will not automatically reload global library macros +2023-10-17 15:42:08,614 - ResourceManager : found vm/java/domain.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-17 15:42:08,627 - Null reference [template 'vm/java/domain.java.vm', line 37, column 9] : $column.columnComment cannot be resolved. +2023-10-17 15:42:08,627 - Null reference [template 'vm/java/domain.java.vm', line 38, column 24] : $column.columnComment cannot be resolved. +2023-10-17 15:42:08,627 - RHS of #set statement is null. Context will not be modified. vm/java/domain.java.vm[line 44, column 1] +2023-10-17 15:42:08,628 - RHS of #set statement is null. Context will not be modified. vm/java/domain.java.vm[line 48, column 1] +2023-10-17 15:42:08,628 - Null reference [template 'vm/java/domain.java.vm', line 37, column 9] : $column.columnComment cannot be resolved. +2023-10-17 15:42:08,628 - Null reference [template 'vm/java/domain.java.vm', line 38, column 24] : $column.columnComment cannot be resolved. +2023-10-17 15:42:08,628 - RHS of #set statement is null. Context will not be modified. vm/java/domain.java.vm[line 44, column 1] +2023-10-17 15:42:08,628 - RHS of #set statement is null. Context will not be modified. vm/java/domain.java.vm[line 48, column 1] +2023-10-17 15:42:08,628 - Null reference [template 'vm/java/domain.java.vm', line 37, column 9] : $column.columnComment cannot be resolved. +2023-10-17 15:42:08,628 - Null reference [template 'vm/java/domain.java.vm', line 38, column 24] : $column.columnComment cannot be resolved. +2023-10-17 15:42:08,628 - RHS of #set statement is null. Context will not be modified. vm/java/domain.java.vm[line 44, column 1] +2023-10-17 15:42:08,628 - RHS of #set statement is null. Context will not be modified. vm/java/domain.java.vm[line 48, column 1] +2023-10-17 15:42:08,628 - Null reference [template 'vm/java/domain.java.vm', line 37, column 9] : $column.columnComment cannot be resolved. +2023-10-17 15:42:08,628 - Null reference [template 'vm/java/domain.java.vm', line 38, column 24] : $column.columnComment cannot be resolved. +2023-10-17 15:42:08,628 - RHS of #set statement is null. Context will not be modified. vm/java/domain.java.vm[line 44, column 1] +2023-10-17 15:42:08,628 - RHS of #set statement is null. Context will not be modified. vm/java/domain.java.vm[line 48, column 1] +2023-10-17 15:42:08,628 - Null reference [template 'vm/java/domain.java.vm', line 37, column 9] : $column.columnComment cannot be resolved. +2023-10-17 15:42:08,628 - Null reference [template 'vm/java/domain.java.vm', line 38, column 24] : $column.columnComment cannot be resolved. +2023-10-17 15:42:08,628 - RHS of #set statement is null. Context will not be modified. vm/java/domain.java.vm[line 44, column 1] +2023-10-17 15:42:08,629 - RHS of #set statement is null. Context will not be modified. vm/java/domain.java.vm[line 48, column 1] +2023-10-17 15:42:08,638 - ResourceManager : found vm/java/mapper.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-17 15:42:08,639 - ResourceManager : found vm/java/service.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-17 15:42:08,644 - ResourceManager : found vm/java/serviceImpl.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-17 15:42:08,650 - ResourceManager : found vm/java/controller.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-17 15:42:08,653 - ResourceManager : found vm/xml/mapper.xml.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-17 15:42:08,656 - ResourceManager : found vm/sql/sql.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-17 15:42:08,657 - ResourceManager : found vm/js/api.js.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-17 15:42:08,669 - ResourceManager : found vm/vue/index.vue.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-17 15:42:08,670 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 8, column 1] +2023-10-17 15:42:08,670 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 12, column 1] +2023-10-17 15:42:08,670 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 8, column 1] +2023-10-17 15:42:08,670 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 12, column 1] +2023-10-17 15:42:08,670 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 8, column 1] +2023-10-17 15:42:08,670 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 12, column 1] +2023-10-17 15:42:08,670 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 8, column 1] +2023-10-17 15:42:08,670 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 12, column 1] +2023-10-17 15:42:08,670 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 8, column 1] +2023-10-17 15:42:08,670 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 12, column 1] +2023-10-17 15:42:08,671 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 123, column 1] +2023-10-17 15:42:08,671 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 127, column 1] +2023-10-17 15:42:08,671 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 123, column 1] +2023-10-17 15:42:08,671 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 127, column 1] +2023-10-17 15:42:08,671 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 123, column 1] +2023-10-17 15:42:08,671 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 127, column 1] +2023-10-17 15:42:08,671 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 123, column 1] +2023-10-17 15:42:08,671 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 127, column 1] +2023-10-17 15:42:08,671 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 123, column 1] +2023-10-17 15:42:08,671 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 127, column 1] +2023-10-17 15:42:08,673 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 182, column 1] +2023-10-17 15:42:08,673 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 186, column 1] +2023-10-17 15:42:08,673 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 182, column 1] +2023-10-17 15:42:08,673 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 186, column 1] +2023-10-17 15:42:08,673 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 182, column 1] +2023-10-17 15:42:08,673 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 186, column 1] +2023-10-17 15:42:08,673 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 182, column 1] +2023-10-17 15:42:08,673 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 186, column 1] +2023-10-17 15:42:08,673 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 182, column 1] +2023-10-17 15:42:08,673 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 186, column 1] +2023-10-17 15:44:59,094 - ResourceManager : found vm/java/domain.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-17 15:44:59,095 - Null reference [template 'vm/java/domain.java.vm', line 37, column 9] : $column.columnComment cannot be resolved. +2023-10-17 15:44:59,095 - Null reference [template 'vm/java/domain.java.vm', line 38, column 24] : $column.columnComment cannot be resolved. +2023-10-17 15:44:59,095 - RHS of #set statement is null. Context will not be modified. vm/java/domain.java.vm[line 44, column 1] +2023-10-17 15:44:59,095 - RHS of #set statement is null. Context will not be modified. vm/java/domain.java.vm[line 48, column 1] +2023-10-17 15:44:59,096 - Null reference [template 'vm/java/domain.java.vm', line 37, column 9] : $column.columnComment cannot be resolved. +2023-10-17 15:44:59,096 - Null reference [template 'vm/java/domain.java.vm', line 38, column 24] : $column.columnComment cannot be resolved. +2023-10-17 15:44:59,096 - RHS of #set statement is null. Context will not be modified. vm/java/domain.java.vm[line 44, column 1] +2023-10-17 15:44:59,096 - RHS of #set statement is null. Context will not be modified. vm/java/domain.java.vm[line 48, column 1] +2023-10-17 15:44:59,096 - Null reference [template 'vm/java/domain.java.vm', line 37, column 9] : $column.columnComment cannot be resolved. +2023-10-17 15:44:59,096 - Null reference [template 'vm/java/domain.java.vm', line 38, column 24] : $column.columnComment cannot be resolved. +2023-10-17 15:44:59,096 - RHS of #set statement is null. Context will not be modified. vm/java/domain.java.vm[line 44, column 1] +2023-10-17 15:44:59,096 - RHS of #set statement is null. Context will not be modified. vm/java/domain.java.vm[line 48, column 1] +2023-10-17 15:44:59,096 - Null reference [template 'vm/java/domain.java.vm', line 37, column 9] : $column.columnComment cannot be resolved. +2023-10-17 15:44:59,096 - Null reference [template 'vm/java/domain.java.vm', line 38, column 24] : $column.columnComment cannot be resolved. +2023-10-17 15:44:59,096 - RHS of #set statement is null. Context will not be modified. vm/java/domain.java.vm[line 44, column 1] +2023-10-17 15:44:59,096 - RHS of #set statement is null. Context will not be modified. vm/java/domain.java.vm[line 48, column 1] +2023-10-17 15:44:59,096 - Null reference [template 'vm/java/domain.java.vm', line 37, column 9] : $column.columnComment cannot be resolved. +2023-10-17 15:44:59,096 - Null reference [template 'vm/java/domain.java.vm', line 38, column 24] : $column.columnComment cannot be resolved. +2023-10-17 15:44:59,096 - RHS of #set statement is null. Context will not be modified. vm/java/domain.java.vm[line 44, column 1] +2023-10-17 15:44:59,097 - RHS of #set statement is null. Context will not be modified. vm/java/domain.java.vm[line 48, column 1] +2023-10-17 15:44:59,098 - ResourceManager : found vm/java/mapper.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-17 15:44:59,099 - ResourceManager : found vm/java/service.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-17 15:44:59,102 - ResourceManager : found vm/java/serviceImpl.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-17 15:44:59,105 - ResourceManager : found vm/java/controller.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-17 15:44:59,107 - ResourceManager : found vm/xml/mapper.xml.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-17 15:44:59,108 - ResourceManager : found vm/sql/sql.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-17 15:44:59,109 - ResourceManager : found vm/js/api.js.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-17 15:44:59,119 - ResourceManager : found vm/vue/index.vue.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-17 15:44:59,120 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 8, column 1] +2023-10-17 15:44:59,120 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 12, column 1] +2023-10-17 15:44:59,120 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 8, column 1] +2023-10-17 15:44:59,120 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 12, column 1] +2023-10-17 15:44:59,120 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 8, column 1] +2023-10-17 15:44:59,120 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 12, column 1] +2023-10-17 15:44:59,120 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 8, column 1] +2023-10-17 15:44:59,120 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 12, column 1] +2023-10-17 15:44:59,120 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 8, column 1] +2023-10-17 15:44:59,120 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 12, column 1] +2023-10-17 15:44:59,121 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 123, column 1] +2023-10-17 15:44:59,121 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 127, column 1] +2023-10-17 15:44:59,121 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 123, column 1] +2023-10-17 15:44:59,121 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 127, column 1] +2023-10-17 15:44:59,121 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 123, column 1] +2023-10-17 15:44:59,121 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 127, column 1] +2023-10-17 15:44:59,121 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 123, column 1] +2023-10-17 15:44:59,121 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 127, column 1] +2023-10-17 15:44:59,121 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 123, column 1] +2023-10-17 15:44:59,121 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 127, column 1] +2023-10-17 15:44:59,121 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 182, column 1] +2023-10-17 15:44:59,122 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 186, column 1] +2023-10-17 15:44:59,122 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 182, column 1] +2023-10-17 15:44:59,122 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 186, column 1] +2023-10-17 15:44:59,122 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 182, column 1] +2023-10-17 15:44:59,122 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 186, column 1] +2023-10-17 15:44:59,122 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 182, column 1] +2023-10-17 15:44:59,122 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 186, column 1] +2023-10-17 15:44:59,122 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 182, column 1] +2023-10-17 15:44:59,122 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 186, column 1] +2023-10-17 15:44:59,122 - Left side ($column.htmlType) of '==' operation has null value. If it is a reference, it may not be in the context or its toString() returned null. vm/vue/index.vue.vm[line 354, column 24] +2023-10-17 15:44:59,122 - Left side ($column.htmlType) of '==' operation has null value. If it is a reference, it may not be in the context or its toString() returned null. vm/vue/index.vue.vm[line 400, column 24] +2023-10-17 15:44:59,122 - Left side ($column.htmlType) of '==' operation has null value. If it is a reference, it may not be in the context or its toString() returned null. vm/vue/index.vue.vm[line 406, column 24] +2023-10-17 15:44:59,123 - Left side ($column.htmlType) of '==' operation has null value. If it is a reference, it may not be in the context or its toString() returned null. vm/vue/index.vue.vm[line 429, column 24] +2023-10-17 15:44:59,123 - Left side ($column.htmlType) of '==' operation has null value. If it is a reference, it may not be in the context or its toString() returned null. vm/vue/index.vue.vm[line 432, column 28] +2023-10-17 15:44:59,123 - Left side ($column.htmlType) of '==' operation has null value. If it is a reference, it may not be in the context or its toString() returned null. vm/vue/index.vue.vm[line 454, column 24] +2023-10-17 15:44:59,123 - Left side ($column.htmlType) of '==' operation has null value. If it is a reference, it may not be in the context or its toString() returned null. vm/vue/index.vue.vm[line 481, column 24] +2023-10-17 15:44:59,123 - Left side ($column.htmlType) of '==' operation has null value. If it is a reference, it may not be in the context or its toString() returned null. vm/vue/index.vue.vm[line 497, column 24] +2023-10-17 15:45:37,935 - ResourceManager : found vm/java/domain.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-17 15:45:37,935 - Null reference [template 'vm/java/domain.java.vm', line 37, column 9] : $column.columnComment cannot be resolved. +2023-10-17 15:45:37,935 - Null reference [template 'vm/java/domain.java.vm', line 38, column 24] : $column.columnComment cannot be resolved. +2023-10-17 15:45:37,935 - RHS of #set statement is null. Context will not be modified. vm/java/domain.java.vm[line 44, column 1] +2023-10-17 15:45:37,936 - RHS of #set statement is null. Context will not be modified. vm/java/domain.java.vm[line 48, column 1] +2023-10-17 15:45:37,936 - Null reference [template 'vm/java/domain.java.vm', line 37, column 9] : $column.columnComment cannot be resolved. +2023-10-17 15:45:37,936 - Null reference [template 'vm/java/domain.java.vm', line 38, column 24] : $column.columnComment cannot be resolved. +2023-10-17 15:45:37,936 - RHS of #set statement is null. Context will not be modified. vm/java/domain.java.vm[line 44, column 1] +2023-10-17 15:45:37,936 - RHS of #set statement is null. Context will not be modified. vm/java/domain.java.vm[line 48, column 1] +2023-10-17 15:45:37,936 - Null reference [template 'vm/java/domain.java.vm', line 37, column 9] : $column.columnComment cannot be resolved. +2023-10-17 15:45:37,936 - Null reference [template 'vm/java/domain.java.vm', line 38, column 24] : $column.columnComment cannot be resolved. +2023-10-17 15:45:37,936 - RHS of #set statement is null. Context will not be modified. vm/java/domain.java.vm[line 44, column 1] +2023-10-17 15:45:37,936 - RHS of #set statement is null. Context will not be modified. vm/java/domain.java.vm[line 48, column 1] +2023-10-17 15:45:37,936 - Null reference [template 'vm/java/domain.java.vm', line 37, column 9] : $column.columnComment cannot be resolved. +2023-10-17 15:45:37,936 - Null reference [template 'vm/java/domain.java.vm', line 38, column 24] : $column.columnComment cannot be resolved. +2023-10-17 15:45:37,936 - RHS of #set statement is null. Context will not be modified. vm/java/domain.java.vm[line 44, column 1] +2023-10-17 15:45:37,936 - RHS of #set statement is null. Context will not be modified. vm/java/domain.java.vm[line 48, column 1] +2023-10-17 15:45:37,936 - Null reference [template 'vm/java/domain.java.vm', line 37, column 9] : $column.columnComment cannot be resolved. +2023-10-17 15:45:37,936 - Null reference [template 'vm/java/domain.java.vm', line 38, column 24] : $column.columnComment cannot be resolved. +2023-10-17 15:45:37,936 - RHS of #set statement is null. Context will not be modified. vm/java/domain.java.vm[line 44, column 1] +2023-10-17 15:45:37,936 - RHS of #set statement is null. Context will not be modified. vm/java/domain.java.vm[line 48, column 1] +2023-10-17 15:45:37,937 - ResourceManager : found vm/java/mapper.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-17 15:45:37,938 - ResourceManager : found vm/java/service.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-17 15:45:37,941 - ResourceManager : found vm/java/serviceImpl.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-17 15:45:37,943 - ResourceManager : found vm/java/controller.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-17 15:45:37,946 - ResourceManager : found vm/xml/mapper.xml.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-17 15:45:37,947 - ResourceManager : found vm/sql/sql.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-17 15:45:37,948 - ResourceManager : found vm/js/api.js.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-17 15:45:37,958 - ResourceManager : found vm/vue/index.vue.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-17 15:45:37,958 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 8, column 1] +2023-10-17 15:45:37,958 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 12, column 1] +2023-10-17 15:45:37,958 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 8, column 1] +2023-10-17 15:45:37,958 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 12, column 1] +2023-10-17 15:45:37,958 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 8, column 1] +2023-10-17 15:45:37,958 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 12, column 1] +2023-10-17 15:45:37,958 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 8, column 1] +2023-10-17 15:45:37,958 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 12, column 1] +2023-10-17 15:45:37,958 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 8, column 1] +2023-10-17 15:45:37,958 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 12, column 1] +2023-10-17 15:45:37,959 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 123, column 1] +2023-10-17 15:45:37,959 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 127, column 1] +2023-10-17 15:45:37,959 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 123, column 1] +2023-10-17 15:45:37,959 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 127, column 1] +2023-10-17 15:45:37,959 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 123, column 1] +2023-10-17 15:45:37,959 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 127, column 1] +2023-10-17 15:45:37,959 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 123, column 1] +2023-10-17 15:45:37,959 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 127, column 1] +2023-10-17 15:45:37,959 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 123, column 1] +2023-10-17 15:45:37,959 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 127, column 1] +2023-10-17 15:45:37,959 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 182, column 1] +2023-10-17 15:45:37,959 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 186, column 1] +2023-10-17 15:45:37,960 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 182, column 1] +2023-10-17 15:45:37,960 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 186, column 1] +2023-10-17 15:45:37,960 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 182, column 1] +2023-10-17 15:45:37,960 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 186, column 1] +2023-10-17 15:45:37,960 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 182, column 1] +2023-10-17 15:45:37,960 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 186, column 1] +2023-10-17 15:45:37,960 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 182, column 1] +2023-10-17 15:45:37,960 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 186, column 1] +2023-10-17 15:45:37,960 - Left side ($column.htmlType) of '==' operation has null value. If it is a reference, it may not be in the context or its toString() returned null. vm/vue/index.vue.vm[line 354, column 24] +2023-10-17 15:45:37,960 - Left side ($column.htmlType) of '==' operation has null value. If it is a reference, it may not be in the context or its toString() returned null. vm/vue/index.vue.vm[line 400, column 24] +2023-10-17 15:45:37,960 - Left side ($column.htmlType) of '==' operation has null value. If it is a reference, it may not be in the context or its toString() returned null. vm/vue/index.vue.vm[line 406, column 24] +2023-10-17 15:45:37,960 - Left side ($column.htmlType) of '==' operation has null value. If it is a reference, it may not be in the context or its toString() returned null. vm/vue/index.vue.vm[line 429, column 24] +2023-10-17 15:45:37,961 - Left side ($column.htmlType) of '==' operation has null value. If it is a reference, it may not be in the context or its toString() returned null. vm/vue/index.vue.vm[line 432, column 28] +2023-10-17 15:45:37,961 - Left side ($column.htmlType) of '==' operation has null value. If it is a reference, it may not be in the context or its toString() returned null. vm/vue/index.vue.vm[line 454, column 24] +2023-10-17 15:45:37,961 - Left side ($column.htmlType) of '==' operation has null value. If it is a reference, it may not be in the context or its toString() returned null. vm/vue/index.vue.vm[line 481, column 24] +2023-10-17 15:45:37,961 - Left side ($column.htmlType) of '==' operation has null value. If it is a reference, it may not be in the context or its toString() returned null. vm/vue/index.vue.vm[line 497, column 24] +2023-10-17 15:51:07,074 - ResourceManager : found vm/java/domain.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-17 15:51:07,074 - Null reference [template 'vm/java/domain.java.vm', line 37, column 9] : $column.columnComment cannot be resolved. +2023-10-17 15:51:07,074 - Null reference [template 'vm/java/domain.java.vm', line 38, column 24] : $column.columnComment cannot be resolved. +2023-10-17 15:51:07,074 - RHS of #set statement is null. Context will not be modified. vm/java/domain.java.vm[line 44, column 1] +2023-10-17 15:51:07,074 - RHS of #set statement is null. Context will not be modified. vm/java/domain.java.vm[line 48, column 1] +2023-10-17 15:51:07,074 - Null reference [template 'vm/java/domain.java.vm', line 37, column 9] : $column.columnComment cannot be resolved. +2023-10-17 15:51:07,074 - Null reference [template 'vm/java/domain.java.vm', line 38, column 24] : $column.columnComment cannot be resolved. +2023-10-17 15:51:07,074 - RHS of #set statement is null. Context will not be modified. vm/java/domain.java.vm[line 44, column 1] +2023-10-17 15:51:07,074 - RHS of #set statement is null. Context will not be modified. vm/java/domain.java.vm[line 48, column 1] +2023-10-17 15:51:07,075 - Null reference [template 'vm/java/domain.java.vm', line 37, column 9] : $column.columnComment cannot be resolved. +2023-10-17 15:51:07,075 - Null reference [template 'vm/java/domain.java.vm', line 38, column 24] : $column.columnComment cannot be resolved. +2023-10-17 15:51:07,075 - RHS of #set statement is null. Context will not be modified. vm/java/domain.java.vm[line 44, column 1] +2023-10-17 15:51:07,075 - RHS of #set statement is null. Context will not be modified. vm/java/domain.java.vm[line 48, column 1] +2023-10-17 15:51:07,075 - Null reference [template 'vm/java/domain.java.vm', line 37, column 9] : $column.columnComment cannot be resolved. +2023-10-17 15:51:07,075 - Null reference [template 'vm/java/domain.java.vm', line 38, column 24] : $column.columnComment cannot be resolved. +2023-10-17 15:51:07,075 - RHS of #set statement is null. Context will not be modified. vm/java/domain.java.vm[line 44, column 1] +2023-10-17 15:51:07,075 - RHS of #set statement is null. Context will not be modified. vm/java/domain.java.vm[line 48, column 1] +2023-10-17 15:51:07,075 - Null reference [template 'vm/java/domain.java.vm', line 37, column 9] : $column.columnComment cannot be resolved. +2023-10-17 15:51:07,075 - Null reference [template 'vm/java/domain.java.vm', line 38, column 24] : $column.columnComment cannot be resolved. +2023-10-17 15:51:07,075 - RHS of #set statement is null. Context will not be modified. vm/java/domain.java.vm[line 44, column 1] +2023-10-17 15:51:07,075 - RHS of #set statement is null. Context will not be modified. vm/java/domain.java.vm[line 48, column 1] +2023-10-17 15:51:07,076 - ResourceManager : found vm/java/mapper.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-17 15:51:07,077 - ResourceManager : found vm/java/service.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-17 15:51:07,080 - ResourceManager : found vm/java/serviceImpl.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-17 15:51:07,083 - ResourceManager : found vm/java/controller.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-17 15:51:07,085 - ResourceManager : found vm/xml/mapper.xml.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-17 15:51:07,086 - ResourceManager : found vm/sql/sql.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-17 15:51:07,087 - ResourceManager : found vm/js/api.js.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-17 15:51:07,097 - ResourceManager : found vm/vue/index.vue.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-10-17 15:51:07,098 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 8, column 1] +2023-10-17 15:51:07,098 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 12, column 1] +2023-10-17 15:51:07,098 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 8, column 1] +2023-10-17 15:51:07,098 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 12, column 1] +2023-10-17 15:51:07,098 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 8, column 1] +2023-10-17 15:51:07,098 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 12, column 1] +2023-10-17 15:51:07,098 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 8, column 1] +2023-10-17 15:51:07,098 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 12, column 1] +2023-10-17 15:51:07,098 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 8, column 1] +2023-10-17 15:51:07,098 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 12, column 1] +2023-10-17 15:51:07,099 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 123, column 1] +2023-10-17 15:51:07,099 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 127, column 1] +2023-10-17 15:51:07,099 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 123, column 1] +2023-10-17 15:51:07,099 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 127, column 1] +2023-10-17 15:51:07,099 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 123, column 1] +2023-10-17 15:51:07,099 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 127, column 1] +2023-10-17 15:51:07,099 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 123, column 1] +2023-10-17 15:51:07,099 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 127, column 1] +2023-10-17 15:51:07,099 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 123, column 1] +2023-10-17 15:51:07,099 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 127, column 1] +2023-10-17 15:51:07,100 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 182, column 1] +2023-10-17 15:51:07,100 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 186, column 1] +2023-10-17 15:51:07,100 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 182, column 1] +2023-10-17 15:51:07,100 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 186, column 1] +2023-10-17 15:51:07,100 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 182, column 1] +2023-10-17 15:51:07,100 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 186, column 1] +2023-10-17 15:51:07,100 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 182, column 1] +2023-10-17 15:51:07,100 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 186, column 1] +2023-10-17 15:51:07,100 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 182, column 1] +2023-10-17 15:51:07,100 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 186, column 1] +2023-10-17 15:51:07,100 - Left side ($column.htmlType) of '==' operation has null value. If it is a reference, it may not be in the context or its toString() returned null. vm/vue/index.vue.vm[line 354, column 24] +2023-10-17 15:51:07,100 - Left side ($column.htmlType) of '==' operation has null value. If it is a reference, it may not be in the context or its toString() returned null. vm/vue/index.vue.vm[line 400, column 24] +2023-10-17 15:51:07,100 - Left side ($column.htmlType) of '==' operation has null value. If it is a reference, it may not be in the context or its toString() returned null. vm/vue/index.vue.vm[line 406, column 24] +2023-10-17 15:51:07,100 - Left side ($column.htmlType) of '==' operation has null value. If it is a reference, it may not be in the context or its toString() returned null. vm/vue/index.vue.vm[line 429, column 24] +2023-10-17 15:51:07,100 - Left side ($column.htmlType) of '==' operation has null value. If it is a reference, it may not be in the context or its toString() returned null. vm/vue/index.vue.vm[line 432, column 28] +2023-10-17 15:51:07,101 - Left side ($column.htmlType) of '==' operation has null value. If it is a reference, it may not be in the context or its toString() returned null. vm/vue/index.vue.vm[line 454, column 24] +2023-10-17 15:51:07,101 - Left side ($column.htmlType) of '==' operation has null value. If it is a reference, it may not be in the context or its toString() returned null. vm/vue/index.vue.vm[line 481, column 24] +2023-10-17 15:51:07,101 - Left side ($column.htmlType) of '==' operation has null value. If it is a reference, it may not be in the context or its toString() returned null. vm/vue/index.vue.vm[line 497, column 24] +2023-11-09 14:05:38,872 - Log4JLogChute initialized using file 'velocity.log' +2023-11-09 14:05:38,873 - Initializing Velocity, Calling init()... +2023-11-09 14:05:38,873 - Starting Apache Velocity v1.7 (compiled: 2010-11-19 12:14:37) +2023-11-09 14:05:38,873 - Default Properties File: org\apache\velocity\runtime\defaults\velocity.properties +2023-11-09 14:05:38,873 - Trying to use logger class org.apache.velocity.runtime.log.AvalonLogChute +2023-11-09 14:05:38,873 - Target log system for org.apache.velocity.runtime.log.AvalonLogChute is not available (java.lang.NoClassDefFoundError: org/apache/log/Priority). Falling back to next log system... +2023-11-09 14:05:38,873 - Trying to use logger class org.apache.velocity.runtime.log.Log4JLogChute +2023-11-09 14:05:38,873 - Using logger class org.apache.velocity.runtime.log.Log4JLogChute +2023-11-09 14:05:38,876 - ResourceLoader instantiated: org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-09 14:05:38,882 - ResourceCache: initialized (class org.apache.velocity.runtime.resource.ResourceCacheImpl) with class java.util.Collections$SynchronizedMap cache map. +2023-11-09 14:05:38,884 - Loaded System Directive: org.apache.velocity.runtime.directive.Stop +2023-11-09 14:05:38,885 - Loaded System Directive: org.apache.velocity.runtime.directive.Define +2023-11-09 14:05:38,886 - Loaded System Directive: org.apache.velocity.runtime.directive.Break +2023-11-09 14:05:38,887 - Loaded System Directive: org.apache.velocity.runtime.directive.Evaluate +2023-11-09 14:05:38,887 - Loaded System Directive: org.apache.velocity.runtime.directive.Literal +2023-11-09 14:05:38,888 - Loaded System Directive: org.apache.velocity.runtime.directive.Macro +2023-11-09 14:05:38,889 - Loaded System Directive: org.apache.velocity.runtime.directive.Parse +2023-11-09 14:05:38,889 - Loaded System Directive: org.apache.velocity.runtime.directive.Include +2023-11-09 14:05:38,890 - Loaded System Directive: org.apache.velocity.runtime.directive.Foreach +2023-11-09 14:05:38,901 - Created '20' parsers. +2023-11-09 14:05:38,903 - Velocimacro : "velocimacro.library" is not set. Trying default library: VM_global_library.vm +2023-11-09 14:05:38,904 - Could not load resource 'VM_global_library.vm' from ResourceLoader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader: ClasspathResourceLoader Error: cannot find resource VM_global_library.vm +2023-11-09 14:05:38,904 - Velocimacro : Default library not found. +2023-11-09 14:05:38,904 - Velocimacro : allowInline = true : VMs can be defined inline in templates +2023-11-09 14:05:38,904 - Velocimacro : allowInlineToOverride = false : VMs defined inline may NOT replace previous VM definitions +2023-11-09 14:05:38,904 - Velocimacro : allowInlineLocal = false : VMs defined inline will be global in scope if allowed. +2023-11-09 14:05:38,904 - Velocimacro : autoload off : VM system will not automatically reload global library macros +2023-11-09 14:05:38,944 - ResourceManager : found vm/java/domain.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-09 14:05:38,956 - Null reference [template 'vm/java/domain.java.vm', line 37, column 9] : $column.columnComment cannot be resolved. +2023-11-09 14:05:38,956 - Null reference [template 'vm/java/domain.java.vm', line 38, column 24] : $column.columnComment cannot be resolved. +2023-11-09 14:05:38,966 - ResourceManager : found vm/java/mapper.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-09 14:05:38,969 - ResourceManager : found vm/java/service.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-09 14:05:38,988 - ResourceManager : found vm/java/serviceImpl.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-09 14:05:38,999 - ResourceManager : found vm/java/controller.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-09 14:05:39,006 - ResourceManager : found vm/xml/mapper.xml.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-09 14:05:39,012 - ResourceManager : found vm/sql/sql.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-09 14:05:39,019 - ResourceManager : found vm/js/api.js.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-09 14:05:39,046 - ResourceManager : found vm/vue/index.vue.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-09 14:05:39,049 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 123, column 1] +2023-11-09 14:05:39,049 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 127, column 1] +2023-11-09 14:05:56,856 - ResourceManager : found vm/java/domain.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-09 14:05:56,857 - Null reference [template 'vm/java/domain.java.vm', line 37, column 9] : $column.columnComment cannot be resolved. +2023-11-09 14:05:56,857 - Null reference [template 'vm/java/domain.java.vm', line 38, column 24] : $column.columnComment cannot be resolved. +2023-11-09 14:05:56,860 - ResourceManager : found vm/java/mapper.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-09 14:05:56,860 - ResourceManager : found vm/java/service.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-09 14:05:56,863 - ResourceManager : found vm/java/serviceImpl.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-09 14:05:56,866 - ResourceManager : found vm/java/controller.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-09 14:05:56,870 - ResourceManager : found vm/xml/mapper.xml.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-09 14:05:56,872 - ResourceManager : found vm/sql/sql.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-09 14:05:56,873 - ResourceManager : found vm/js/api.js.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-09 14:05:56,885 - ResourceManager : found vm/vue/index.vue.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-09 14:05:56,886 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 123, column 1] +2023-11-09 14:05:56,886 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 127, column 1] +2023-11-09 14:06:17,466 - ResourceManager : found vm/java/domain.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-09 14:06:17,466 - Null reference [template 'vm/java/domain.java.vm', line 37, column 9] : $column.columnComment cannot be resolved. +2023-11-09 14:06:17,466 - Null reference [template 'vm/java/domain.java.vm', line 38, column 24] : $column.columnComment cannot be resolved. +2023-11-09 14:06:17,467 - ResourceManager : found vm/java/mapper.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-09 14:06:17,468 - ResourceManager : found vm/java/service.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-09 14:06:17,470 - ResourceManager : found vm/java/serviceImpl.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-09 14:06:17,473 - ResourceManager : found vm/java/controller.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-09 14:06:17,475 - ResourceManager : found vm/xml/mapper.xml.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-09 14:06:17,477 - ResourceManager : found vm/sql/sql.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-09 14:06:17,478 - ResourceManager : found vm/js/api.js.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-09 14:06:17,487 - ResourceManager : found vm/vue/index.vue.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-09 14:06:17,488 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 123, column 1] +2023-11-09 14:06:17,488 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 127, column 1] +2023-11-09 14:07:40,328 - ResourceManager : found vm/java/domain.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-09 14:07:40,328 - Null reference [template 'vm/java/domain.java.vm', line 37, column 9] : $column.columnComment cannot be resolved. +2023-11-09 14:07:40,328 - Null reference [template 'vm/java/domain.java.vm', line 38, column 24] : $column.columnComment cannot be resolved. +2023-11-09 14:07:40,334 - ResourceManager : found vm/java/mapper.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-09 14:07:40,335 - ResourceManager : found vm/java/service.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-09 14:07:40,337 - ResourceManager : found vm/java/serviceImpl.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-09 14:07:40,340 - ResourceManager : found vm/java/controller.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-09 14:07:40,343 - ResourceManager : found vm/xml/mapper.xml.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-09 14:07:40,344 - ResourceManager : found vm/sql/sql.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-09 14:07:40,345 - ResourceManager : found vm/js/api.js.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-09 14:07:40,354 - ResourceManager : found vm/vue/index.vue.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-09 14:07:40,355 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 123, column 1] +2023-11-09 14:07:40,355 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 127, column 1] +2023-11-09 17:12:58,434 - ResourceManager : found vm/java/domain.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-09 17:12:58,435 - Null reference [template 'vm/java/domain.java.vm', line 37, column 9] : $column.columnComment cannot be resolved. +2023-11-09 17:12:58,435 - Null reference [template 'vm/java/domain.java.vm', line 38, column 24] : $column.columnComment cannot be resolved. +2023-11-09 17:12:58,436 - ResourceManager : found vm/java/mapper.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-09 17:12:58,437 - ResourceManager : found vm/java/service.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-09 17:12:58,439 - ResourceManager : found vm/java/serviceImpl.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-09 17:12:58,442 - ResourceManager : found vm/java/controller.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-09 17:12:58,444 - ResourceManager : found vm/xml/mapper.xml.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-09 17:12:58,445 - ResourceManager : found vm/sql/sql.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-09 17:12:58,446 - ResourceManager : found vm/js/api.js.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-09 17:12:58,456 - ResourceManager : found vm/vue/index.vue.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-09 17:12:58,456 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 123, column 1] +2023-11-09 17:12:58,456 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 127, column 1] +2023-11-10 09:55:18,319 - Log4JLogChute initialized using file 'velocity.log' +2023-11-10 09:55:18,320 - Initializing Velocity, Calling init()... +2023-11-10 09:55:18,320 - Starting Apache Velocity v1.7 (compiled: 2010-11-19 12:14:37) +2023-11-10 09:55:18,320 - Default Properties File: org\apache\velocity\runtime\defaults\velocity.properties +2023-11-10 09:55:18,320 - Trying to use logger class org.apache.velocity.runtime.log.AvalonLogChute +2023-11-10 09:55:18,320 - Target log system for org.apache.velocity.runtime.log.AvalonLogChute is not available (java.lang.NoClassDefFoundError: org/apache/log/Priority). Falling back to next log system... +2023-11-10 09:55:18,320 - Trying to use logger class org.apache.velocity.runtime.log.Log4JLogChute +2023-11-10 09:55:18,320 - Using logger class org.apache.velocity.runtime.log.Log4JLogChute +2023-11-10 09:55:18,322 - ResourceLoader instantiated: org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:55:18,329 - ResourceCache: initialized (class org.apache.velocity.runtime.resource.ResourceCacheImpl) with class java.util.Collections$SynchronizedMap cache map. +2023-11-10 09:55:18,331 - Loaded System Directive: org.apache.velocity.runtime.directive.Stop +2023-11-10 09:55:18,332 - Loaded System Directive: org.apache.velocity.runtime.directive.Define +2023-11-10 09:55:18,333 - Loaded System Directive: org.apache.velocity.runtime.directive.Break +2023-11-10 09:55:18,334 - Loaded System Directive: org.apache.velocity.runtime.directive.Evaluate +2023-11-10 09:55:18,334 - Loaded System Directive: org.apache.velocity.runtime.directive.Literal +2023-11-10 09:55:18,335 - Loaded System Directive: org.apache.velocity.runtime.directive.Macro +2023-11-10 09:55:18,336 - Loaded System Directive: org.apache.velocity.runtime.directive.Parse +2023-11-10 09:55:18,336 - Loaded System Directive: org.apache.velocity.runtime.directive.Include +2023-11-10 09:55:18,337 - Loaded System Directive: org.apache.velocity.runtime.directive.Foreach +2023-11-10 09:55:18,344 - Created '20' parsers. +2023-11-10 09:55:18,346 - Velocimacro : "velocimacro.library" is not set. Trying default library: VM_global_library.vm +2023-11-10 09:55:18,348 - Could not load resource 'VM_global_library.vm' from ResourceLoader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader: ClasspathResourceLoader Error: cannot find resource VM_global_library.vm +2023-11-10 09:55:18,348 - Velocimacro : Default library not found. +2023-11-10 09:55:18,348 - Velocimacro : allowInline = true : VMs can be defined inline in templates +2023-11-10 09:55:18,348 - Velocimacro : allowInlineToOverride = false : VMs defined inline may NOT replace previous VM definitions +2023-11-10 09:55:18,348 - Velocimacro : allowInlineLocal = false : VMs defined inline will be global in scope if allowed. +2023-11-10 09:55:18,349 - Velocimacro : autoload off : VM system will not automatically reload global library macros +2023-11-10 09:55:18,385 - ResourceManager : found vm/java/domain.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:55:18,393 - Null reference [template 'vm/java/domain.java.vm', line 37, column 9] : $column.columnComment cannot be resolved. +2023-11-10 09:55:18,393 - Null reference [template 'vm/java/domain.java.vm', line 38, column 24] : $column.columnComment cannot be resolved. +2023-11-10 09:55:18,402 - ResourceManager : found vm/java/mapper.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:55:18,406 - ResourceManager : found vm/java/service.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:55:18,416 - ResourceManager : found vm/java/serviceImpl.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:55:18,428 - ResourceManager : found vm/java/controller.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:55:18,436 - ResourceManager : found vm/xml/mapper.xml.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:55:18,444 - ResourceManager : found vm/sql/sql.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:55:18,451 - ResourceManager : found vm/js/api.js.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:55:18,478 - ResourceManager : found vm/vue/index.vue.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:55:18,480 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 123, column 1] +2023-11-10 09:55:18,480 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 127, column 1] +2023-11-10 09:56:17,314 - ResourceManager : found vm/java/domain.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:56:17,315 - Null reference [template 'vm/java/domain.java.vm', line 37, column 9] : $column.columnComment cannot be resolved. +2023-11-10 09:56:17,315 - Null reference [template 'vm/java/domain.java.vm', line 38, column 24] : $column.columnComment cannot be resolved. +2023-11-10 09:56:17,317 - ResourceManager : found vm/java/mapper.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:56:17,318 - ResourceManager : found vm/java/service.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:56:17,321 - ResourceManager : found vm/java/serviceImpl.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:56:17,323 - ResourceManager : found vm/java/controller.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:56:17,326 - ResourceManager : found vm/xml/mapper.xml.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:56:17,327 - ResourceManager : found vm/sql/sql.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:56:17,328 - ResourceManager : found vm/js/api.js.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:56:17,339 - ResourceManager : found vm/vue/index.vue.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:56:17,340 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 123, column 1] +2023-11-10 09:56:17,340 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 127, column 1] +2023-11-10 09:56:49,017 - ResourceManager : found vm/java/domain.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:56:49,017 - Null reference [template 'vm/java/domain.java.vm', line 37, column 9] : $column.columnComment cannot be resolved. +2023-11-10 09:56:49,017 - Null reference [template 'vm/java/domain.java.vm', line 38, column 24] : $column.columnComment cannot be resolved. +2023-11-10 09:56:49,019 - ResourceManager : found vm/java/mapper.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:56:49,019 - ResourceManager : found vm/java/service.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:56:49,022 - ResourceManager : found vm/java/serviceImpl.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:56:49,025 - ResourceManager : found vm/java/controller.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:56:49,027 - ResourceManager : found vm/xml/mapper.xml.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:56:49,028 - ResourceManager : found vm/sql/sql.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:56:49,029 - ResourceManager : found vm/js/api.js.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:56:49,040 - ResourceManager : found vm/vue/index.vue.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:56:49,041 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 123, column 1] +2023-11-10 09:56:49,041 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 127, column 1] +2023-11-10 09:58:33,258 - ResourceManager : found vm/java/domain.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:58:33,258 - Null reference [template 'vm/java/domain.java.vm', line 37, column 9] : $column.columnComment cannot be resolved. +2023-11-10 09:58:33,258 - Null reference [template 'vm/java/domain.java.vm', line 38, column 24] : $column.columnComment cannot be resolved. +2023-11-10 09:58:33,259 - ResourceManager : found vm/java/mapper.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:58:33,260 - ResourceManager : found vm/java/service.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:58:33,263 - ResourceManager : found vm/java/serviceImpl.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:58:33,265 - ResourceManager : found vm/java/controller.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:58:33,268 - ResourceManager : found vm/xml/mapper.xml.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:58:33,269 - ResourceManager : found vm/sql/sql.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:58:33,270 - ResourceManager : found vm/js/api.js.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:58:33,280 - ResourceManager : found vm/vue/index.vue.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:58:33,280 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 123, column 1] +2023-11-10 09:58:33,280 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 127, column 1] +2023-11-10 09:58:42,654 - ResourceManager : found vm/java/domain.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:58:42,655 - Null reference [template 'vm/java/domain.java.vm', line 37, column 9] : $column.columnComment cannot be resolved. +2023-11-10 09:58:42,655 - Null reference [template 'vm/java/domain.java.vm', line 38, column 24] : $column.columnComment cannot be resolved. +2023-11-10 09:58:42,656 - ResourceManager : found vm/java/mapper.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:58:42,657 - ResourceManager : found vm/java/service.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:58:42,660 - ResourceManager : found vm/java/serviceImpl.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:58:42,663 - ResourceManager : found vm/java/controller.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:58:42,666 - ResourceManager : found vm/xml/mapper.xml.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:58:42,668 - ResourceManager : found vm/sql/sql.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:58:42,669 - ResourceManager : found vm/js/api.js.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:58:42,680 - ResourceManager : found vm/vue/index.vue.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:58:42,681 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 123, column 1] +2023-11-10 09:58:42,681 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 127, column 1] +2023-11-10 09:58:47,310 - ResourceManager : found vm/java/domain.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:58:47,310 - Null reference [template 'vm/java/domain.java.vm', line 37, column 9] : $column.columnComment cannot be resolved. +2023-11-10 09:58:47,310 - Null reference [template 'vm/java/domain.java.vm', line 38, column 24] : $column.columnComment cannot be resolved. +2023-11-10 09:58:47,312 - ResourceManager : found vm/java/mapper.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:58:47,313 - ResourceManager : found vm/java/service.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:58:47,317 - ResourceManager : found vm/java/serviceImpl.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:58:47,321 - ResourceManager : found vm/java/controller.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:58:47,325 - ResourceManager : found vm/xml/mapper.xml.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:58:47,327 - ResourceManager : found vm/sql/sql.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:58:47,329 - ResourceManager : found vm/js/api.js.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:58:47,353 - ResourceManager : found vm/vue/index.vue.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 09:58:47,354 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 123, column 1] +2023-11-10 09:58:47,354 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 127, column 1] +2023-11-10 10:01:42,286 - ResourceManager : found vm/java/domain.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 10:01:42,286 - Null reference [template 'vm/java/domain.java.vm', line 37, column 9] : $column.columnComment cannot be resolved. +2023-11-10 10:01:42,286 - Null reference [template 'vm/java/domain.java.vm', line 38, column 24] : $column.columnComment cannot be resolved. +2023-11-10 10:01:42,287 - ResourceManager : found vm/java/mapper.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 10:01:42,287 - ResourceManager : found vm/java/service.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 10:01:42,290 - ResourceManager : found vm/java/serviceImpl.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 10:01:42,292 - ResourceManager : found vm/java/controller.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 10:01:42,295 - ResourceManager : found vm/xml/mapper.xml.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 10:01:42,295 - ResourceManager : found vm/sql/sql.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 10:01:42,296 - ResourceManager : found vm/js/api.js.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 10:01:42,306 - ResourceManager : found vm/vue/index.vue.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 10:01:42,306 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 123, column 1] +2023-11-10 10:01:42,306 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 127, column 1] +2023-11-10 10:10:13,791 - ResourceManager : found vm/java/domain.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 10:10:13,791 - Null reference [template 'vm/java/domain.java.vm', line 37, column 9] : $column.columnComment cannot be resolved. +2023-11-10 10:10:13,791 - Null reference [template 'vm/java/domain.java.vm', line 38, column 24] : $column.columnComment cannot be resolved. +2023-11-10 10:10:13,801 - ResourceManager : found vm/java/mapper.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 10:10:13,802 - ResourceManager : found vm/java/service.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 10:10:13,805 - ResourceManager : found vm/java/serviceImpl.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 10:10:13,809 - ResourceManager : found vm/java/controller.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 10:10:13,811 - ResourceManager : found vm/xml/mapper.xml.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 10:10:13,812 - ResourceManager : found vm/sql/sql.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 10:10:13,813 - ResourceManager : found vm/js/api.js.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 10:10:13,824 - ResourceManager : found vm/vue/index.vue.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-11-10 10:10:13,824 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 123, column 1] +2023-11-10 10:10:13,824 - RHS of #set statement is null. Context will not be modified. vm/vue/index.vue.vm[line 127, column 1] +2023-12-27 18:28:50,229 - Log4JLogChute initialized using file 'velocity.log' +2023-12-27 18:28:50,231 - Initializing Velocity, Calling init()... +2023-12-27 18:28:50,231 - Starting Apache Velocity v1.7 (compiled: 2010-11-19 12:14:37) +2023-12-27 18:28:50,231 - Default Properties File: org\apache\velocity\runtime\defaults\velocity.properties +2023-12-27 18:28:50,231 - Trying to use logger class org.apache.velocity.runtime.log.AvalonLogChute +2023-12-27 18:28:50,231 - Target log system for org.apache.velocity.runtime.log.AvalonLogChute is not available (java.lang.NoClassDefFoundError: org/apache/log/Priority). Falling back to next log system... +2023-12-27 18:28:50,231 - Trying to use logger class org.apache.velocity.runtime.log.Log4JLogChute +2023-12-27 18:28:50,232 - Using logger class org.apache.velocity.runtime.log.Log4JLogChute +2023-12-27 18:28:50,234 - ResourceLoader instantiated: org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-12-27 18:28:50,240 - ResourceCache: initialized (class org.apache.velocity.runtime.resource.ResourceCacheImpl) with class java.util.Collections$SynchronizedMap cache map. +2023-12-27 18:28:50,243 - Loaded System Directive: org.apache.velocity.runtime.directive.Stop +2023-12-27 18:28:50,243 - Loaded System Directive: org.apache.velocity.runtime.directive.Define +2023-12-27 18:28:50,244 - Loaded System Directive: org.apache.velocity.runtime.directive.Break +2023-12-27 18:28:50,245 - Loaded System Directive: org.apache.velocity.runtime.directive.Evaluate +2023-12-27 18:28:50,245 - Loaded System Directive: org.apache.velocity.runtime.directive.Literal +2023-12-27 18:28:50,246 - Loaded System Directive: org.apache.velocity.runtime.directive.Macro +2023-12-27 18:28:50,246 - Loaded System Directive: org.apache.velocity.runtime.directive.Parse +2023-12-27 18:28:50,247 - Loaded System Directive: org.apache.velocity.runtime.directive.Include +2023-12-27 18:28:50,248 - Loaded System Directive: org.apache.velocity.runtime.directive.Foreach +2023-12-27 18:28:50,256 - Created '20' parsers. +2023-12-27 18:28:50,258 - Velocimacro : "velocimacro.library" is not set. Trying default library: VM_global_library.vm +2023-12-27 18:28:50,260 - Could not load resource 'VM_global_library.vm' from ResourceLoader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader: ClasspathResourceLoader Error: cannot find resource VM_global_library.vm +2023-12-27 18:28:50,260 - Velocimacro : Default library not found. +2023-12-27 18:28:50,260 - Velocimacro : allowInline = true : VMs can be defined inline in templates +2023-12-27 18:28:50,260 - Velocimacro : allowInlineToOverride = false : VMs defined inline may NOT replace previous VM definitions +2023-12-27 18:28:50,260 - Velocimacro : allowInlineLocal = false : VMs defined inline will be global in scope if allowed. +2023-12-27 18:28:50,260 - Velocimacro : autoload off : VM system will not automatically reload global library macros +2023-12-27 18:28:50,281 - ResourceManager : found vm/java/domain.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-12-27 18:28:50,298 - ResourceManager : found vm/java/mapper.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-12-27 18:28:50,299 - ResourceManager : found vm/java/service.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-12-27 18:28:50,303 - ResourceManager : found vm/java/serviceImpl.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-12-27 18:28:50,308 - ResourceManager : found vm/java/controller.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-12-27 18:28:50,311 - ResourceManager : found vm/xml/mapper.xml.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-12-27 18:28:50,313 - ResourceManager : found vm/sql/sql.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-12-27 18:28:50,314 - ResourceManager : found vm/js/api.js.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-12-27 18:28:50,328 - ResourceManager : found vm/vue/index.vue.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-12-27 18:28:50,350 - ResourceManager : found vm/java/domain.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-12-27 18:28:50,353 - ResourceManager : found vm/java/mapper.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-12-27 18:28:50,353 - ResourceManager : found vm/java/service.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-12-27 18:28:50,355 - ResourceManager : found vm/java/serviceImpl.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-12-27 18:28:50,358 - ResourceManager : found vm/java/controller.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-12-27 18:28:50,361 - ResourceManager : found vm/xml/mapper.xml.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-12-27 18:28:50,362 - ResourceManager : found vm/sql/sql.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-12-27 18:28:50,363 - ResourceManager : found vm/js/api.js.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2023-12-27 18:28:50,373 - ResourceManager : found vm/vue/index.vue.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2024-02-27 13:53:07,304 - Log4JLogChute initialized using file 'velocity.log' +2024-02-27 13:53:07,305 - Initializing Velocity, Calling init()... +2024-02-27 13:53:07,305 - Starting Apache Velocity v1.7 (compiled: 2010-11-19 12:14:37) +2024-02-27 13:53:07,305 - Default Properties File: org\apache\velocity\runtime\defaults\velocity.properties +2024-02-27 13:53:07,305 - Trying to use logger class org.apache.velocity.runtime.log.AvalonLogChute +2024-02-27 13:53:07,305 - Target log system for org.apache.velocity.runtime.log.AvalonLogChute is not available (java.lang.NoClassDefFoundError: org/apache/log/Priority). Falling back to next log system... +2024-02-27 13:53:07,305 - Trying to use logger class org.apache.velocity.runtime.log.Log4JLogChute +2024-02-27 13:53:07,305 - Using logger class org.apache.velocity.runtime.log.Log4JLogChute +2024-02-27 13:53:07,308 - ResourceLoader instantiated: org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2024-02-27 13:53:07,314 - ResourceCache: initialized (class org.apache.velocity.runtime.resource.ResourceCacheImpl) with class java.util.Collections$SynchronizedMap cache map. +2024-02-27 13:53:07,316 - Loaded System Directive: org.apache.velocity.runtime.directive.Stop +2024-02-27 13:53:07,317 - Loaded System Directive: org.apache.velocity.runtime.directive.Define +2024-02-27 13:53:07,317 - Loaded System Directive: org.apache.velocity.runtime.directive.Break +2024-02-27 13:53:07,318 - Loaded System Directive: org.apache.velocity.runtime.directive.Evaluate +2024-02-27 13:53:07,318 - Loaded System Directive: org.apache.velocity.runtime.directive.Literal +2024-02-27 13:53:07,319 - Loaded System Directive: org.apache.velocity.runtime.directive.Macro +2024-02-27 13:53:07,320 - Loaded System Directive: org.apache.velocity.runtime.directive.Parse +2024-02-27 13:53:07,321 - Loaded System Directive: org.apache.velocity.runtime.directive.Include +2024-02-27 13:53:07,322 - Loaded System Directive: org.apache.velocity.runtime.directive.Foreach +2024-02-27 13:53:07,331 - Created '20' parsers. +2024-02-27 13:53:07,333 - Velocimacro : "velocimacro.library" is not set. Trying default library: VM_global_library.vm +2024-02-27 13:53:07,334 - Could not load resource 'VM_global_library.vm' from ResourceLoader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader: ClasspathResourceLoader Error: cannot find resource VM_global_library.vm +2024-02-27 13:53:07,334 - Velocimacro : Default library not found. +2024-02-27 13:53:07,334 - Velocimacro : allowInline = true : VMs can be defined inline in templates +2024-02-27 13:53:07,334 - Velocimacro : allowInlineToOverride = false : VMs defined inline may NOT replace previous VM definitions +2024-02-27 13:53:07,335 - Velocimacro : allowInlineLocal = false : VMs defined inline will be global in scope if allowed. +2024-02-27 13:53:07,335 - Velocimacro : autoload off : VM system will not automatically reload global library macros +2024-02-27 13:53:07,356 - ResourceManager : found vm/java/domain.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2024-02-27 13:53:07,370 - ResourceManager : found vm/java/mapper.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader +2024-02-27 13:53:07,372 - ResourceManager : found vm/java/service.java.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader -- Gitblit v1.9.3