|
|
@@ -6,6 +6,7 @@ import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
import com.gree.mall.manager.annotation.ZfireField;
|
|
|
import com.gree.mall.manager.annotation.ZfireList;
|
|
|
+import com.gree.mall.manager.enums.UserCreditBillStatusEnum;
|
|
|
import com.gree.mall.manager.plus.entity.UserCompanyCreditBill;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
@@ -36,6 +37,9 @@ public class UserCompanyCreditBillVO {
|
|
|
@ApiModelProperty(value = "账单总金额")
|
|
|
private BigDecimal amount;
|
|
|
|
|
|
+ @ApiModelProperty(value = "已还款金额")
|
|
|
+ private BigDecimal payAmount;
|
|
|
+
|
|
|
@ApiModelProperty(value = "剩余未还金额")
|
|
|
private BigDecimal remainingAmount;
|
|
|
|
|
|
@@ -45,8 +49,8 @@ public class UserCompanyCreditBillVO {
|
|
|
@ApiModelProperty(value = "账单到期日期")
|
|
|
private Date dueDate;
|
|
|
|
|
|
- @ApiModelProperty(value = "是否已支付 1=是 0=否")
|
|
|
- private Boolean isPaid;
|
|
|
+ @ApiModelProperty(value = "状态")
|
|
|
+ private UserCreditBillStatusEnum status;
|
|
|
|
|
|
@ApiModelProperty(value = "创建时间")
|
|
|
private Date createTime;
|