Commit 744d58f7 by zhangxingmin

修复

parent cd9ce964
......@@ -37,12 +37,12 @@ public class ApiAppointmentPageResponse {
private String companyName;
/**
* 投保人(显示内容:投保人表的名字+名字英文)
* 投保人(显示内容:名字英文)
*/
private String policyholder;
/**
* 受保人(显示内容:受保人表的名字+名字英文)
* 受保人(显示内容:名字英文)
*/
private String insurant;
......
package com.yd.csf.service.model;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.*;
import java.io.Serializable;
import java.math.BigDecimal;
import java.time.LocalDateTime;
......@@ -133,7 +131,7 @@ public class ProductPlan implements Serializable {
/**
* 保单生效日
*/
@TableField("policy_effective_date")
@TableField(value = "policy_effective_date",updateStrategy = FieldStrategy.IGNORED)
private LocalDateTime policyEffectiveDate;
/**
......
......@@ -8,8 +8,8 @@
a.appointment_no,
concat(pp.product_name,'(',pp.payment_term,'年)') as productName,
concat(pp.company_name, '\n', pp.region) as companyName,
concat(p.name, '\n', p.name_en) as policyholder,
concat(i.name, '\n', i.name_en) as insurant,
p.name_en as policyholder,
i.name_en as insurant,
concat(pp.payment_term, '年') as paymentTerm,
a.status,
pp.each_issue_premium,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment