|
|
@ -1,5 +1,6 @@ |
|
|
|
package com.yxt.supervise.report.ds.crm; |
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableField; |
|
|
|
import com.baomidou.mybatisplus.annotation.TableName; |
|
|
|
import lombok.Data; |
|
|
|
|
|
|
@ -7,7 +8,7 @@ import java.math.BigDecimal; |
|
|
|
import java.time.Period; |
|
|
|
|
|
|
|
@Data |
|
|
|
@TableName("project_information") |
|
|
|
//@TableName("project_information")
|
|
|
|
public class ProjectInfo { |
|
|
|
private String id; |
|
|
|
private String sid; |
|
|
@ -17,12 +18,20 @@ public class ProjectInfo { |
|
|
|
private double useLimit=0; |
|
|
|
private double bankPledgeRate=0; |
|
|
|
private double bankPledgeRateNew=0; |
|
|
|
@TableField(exist = false) |
|
|
|
private String count; |
|
|
|
@TableField(exist = false) |
|
|
|
private String projectType; |
|
|
|
@TableField(exist = false) |
|
|
|
private String bankName; |
|
|
|
@TableField(exist = false) |
|
|
|
private String bManagerName; |
|
|
|
@TableField(exist = false) |
|
|
|
private String signingDate; |
|
|
|
@TableField(exist = false) |
|
|
|
private String managerSid; |
|
|
|
@TableField(exist = false) |
|
|
|
private String bankSid; |
|
|
|
@TableField(exist = false) |
|
|
|
private String typeSid; |
|
|
|
} |
|
|
|