liusheng
2024-02-27 e338114af5b96b3d7686ab9b424a9076b94611d3
代码提交
已添加7个文件
已修改4个文件
1235 ■■■■■ 文件已修改
ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceDonorpaymentController.java 103 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceReimbursementController.java 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-project/src/main/java/com/ruoyi/project/domain/ServiceDonorpayment.java 128 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-project/src/main/java/com/ruoyi/project/domain/ServiceReimbursement.java 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-project/src/main/java/com/ruoyi/project/mapper/ServiceDonorpaymentMapper.java 25 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-project/src/main/java/com/ruoyi/project/service/IServiceDonorpaymentService.java 24 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-project/src/main/java/com/ruoyi/project/service/impl/ServiceDonatebaseinfoServiceImpl.java 14 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-project/src/main/java/com/ruoyi/project/service/impl/ServiceDonorpaymentServiceImpl.java 76 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-project/src/main/java/com/ruoyi/project/service/impl/ServiceFundServiceImpl.java 65 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-project/src/main/resources/mapper/project/ServiceDonorpaymentMapper.xml 53 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
velocity.log.1 744 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
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;
/**
 * è´¹ç”¨æ”¶æ¬¾å•Controller
 *
 * @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)));
    }
}
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());
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;
}
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;
}
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;
/**
 * è´¹ç”¨æ”¶æ¬¾å•Mapper接口
 *
 * @author ruoyi
 * @date 2024-02-27
 */
@Mapper
public interface ServiceDonorpaymentMapper extends BaseMapper<ServiceDonorpayment> {
    /**
     * æŸ¥è¯¢è´¹ç”¨æ”¶æ¬¾å•列表
     *
     * @param serviceDonorpayment è´¹ç”¨æ”¶æ¬¾å•
     * @return è´¹ç”¨æ”¶æ¬¾å•集合
     */
    public List<ServiceDonorpayment> selectServiceDonorpaymentList(ServiceDonorpayment serviceDonorpayment);
}
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;
/**
 * è´¹ç”¨æ”¶æ¬¾å•Service接口
 *
 * @author ruoyi
 * @date 2024-02-27
 */
public interface IServiceDonorpaymentService extends IService<ServiceDonorpayment>
{
    /**
     * æŸ¥è¯¢è´¹ç”¨æ”¶æ¬¾å•列表
     *
     * @param serviceDonorpayment è´¹ç”¨æ”¶æ¬¾å•
     * @return è´¹ç”¨æ”¶æ¬¾å•集合
     */
    public List<ServiceDonorpayment> queryList(ServiceDonorpayment serviceDonorpayment);
}
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", "");
            }
        }
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;
/**
 * è´¹ç”¨æ”¶æ¬¾å•Service业务层处理
 *
 * @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);
    }
}
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);
            //將附件转成json
            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);
                //將附件转成json
                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);
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>
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