Commit 4d39764e384c96bc737bda47928b6f753e4771b2

Authored by yeqianyong
1 parent 0897753f

楚江erp:台账明细列表逻辑调整

... ... @@ -151,6 +151,11 @@ public class ReceiptLedgerInfo extends BaseEntity implements BaseDto {
151 151 private BigDecimal endAccountReceivable;
152 152
153 153 /**
  154 + * 欠款状态
  155 + */
  156 + private String debtStatus;
  157 +
  158 + /**
154 159 * 申请状态
155 160 */
156 161 private String applyStatus;
... ... @@ -196,11 +201,6 @@ public class ReceiptLedgerInfo extends BaseEntity implements BaseDto {
196 201 private Integer delFlag;
197 202
198 203 /**
199   - * 是否拆分
200   - */
201   - private boolean spilt;
202   -
203   - /**
204 204 * 创建人ID
205 205 */
206 206 @TableField(fill = FieldFill.INSERT)
... ...
... ... @@ -3,7 +3,6 @@ package com.lframework.xingyun.sc.vo.ledger.receipt;
3 3 import lombok.Data;
4 4 import com.lframework.starter.web.core.vo.PageVo;
5 5 import com.lframework.starter.web.core.vo.BaseVo;
6   -import com.lframework.starter.web.core.components.validation.TypeMismatch;
7 6 import io.swagger.annotations.ApiModelProperty;
8 7 import java.io.Serializable;
9 8
... ...