项目、合同修复
This commit is contained in:
@@ -22,6 +22,8 @@
|
||||
*/
|
||||
package org.springblade.transport.pojo.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.FieldStrategy;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
@@ -107,9 +109,11 @@ public class ContractManage extends TenantEntity {
|
||||
private Integer legalSealFlag;
|
||||
|
||||
@Schema(description = "一式份数")
|
||||
@TableField(insertStrategy = FieldStrategy.ALWAYS, updateStrategy = FieldStrategy.ALWAYS)
|
||||
private Integer copyCount;
|
||||
|
||||
@Schema(description = "回款账期(天)")
|
||||
@TableField(insertStrategy = FieldStrategy.ALWAYS, updateStrategy = FieldStrategy.ALWAYS)
|
||||
private Integer paymentDays;
|
||||
|
||||
@Schema(description = "合同阶段")
|
||||
|
||||
@@ -22,6 +22,8 @@
|
||||
*/
|
||||
package org.springblade.transport.pojo.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.FieldStrategy;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
@@ -93,6 +95,7 @@ public class CustomerArchive extends TenantEntity {
|
||||
private String deptName;
|
||||
|
||||
@Schema(description = "开票税点")
|
||||
@TableField(updateStrategy = FieldStrategy.ALWAYS)
|
||||
private BigDecimal invoiceTaxRate;
|
||||
|
||||
@Schema(description = "经营范围")
|
||||
@@ -102,9 +105,11 @@ public class CustomerArchive extends TenantEntity {
|
||||
private String businessTermType;
|
||||
|
||||
@Schema(description = "营业期限截止日")
|
||||
@TableField(updateStrategy = FieldStrategy.ALWAYS)
|
||||
private LocalDate businessEndDate;
|
||||
|
||||
@Schema(description = "注册资金(万元)")
|
||||
@TableField(updateStrategy = FieldStrategy.ALWAYS)
|
||||
private BigDecimal registeredCapital;
|
||||
|
||||
@Schema(description = "客商负责人")
|
||||
|
||||
@@ -55,6 +55,10 @@ public class ContractManageVO extends ContractManage {
|
||||
@Schema(description = "到期快捷筛选")
|
||||
private String expireScope;
|
||||
|
||||
@TableField(exist = false)
|
||||
@Schema(description = "生效类型筛选")
|
||||
private String effectiveType;
|
||||
|
||||
@TableField(exist = false)
|
||||
@Schema(description = "创建人姓名")
|
||||
private String createUserName;
|
||||
|
||||
@@ -71,4 +71,8 @@ public class ProjectApplyVO extends ProjectApply {
|
||||
@Schema(description = "变更类型")
|
||||
private String changeType;
|
||||
|
||||
@TableField(exist = false)
|
||||
@Schema(description = "是否仅查询可用于临时额度申请的项目")
|
||||
private Boolean temporaryCreditLimitSelectable;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user