12 changed files with 280 additions and 48 deletions
@ -0,0 +1,79 @@ |
|||||
|
package com.qs.serve.modules.bir.entity.vo; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.math.BigDecimal; |
||||
|
|
||||
|
/** |
||||
|
* @author YenHex |
||||
|
* @since 2023/7/3 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class BirCenterCostRateItem { |
||||
|
|
||||
|
/** |
||||
|
* 目标发货金额 |
||||
|
*/ |
||||
|
private BigDecimal targetDispatchAmt; |
||||
|
|
||||
|
/** |
||||
|
* 预算金额 |
||||
|
*/ |
||||
|
private BigDecimal budgetAmt; |
||||
|
|
||||
|
/** |
||||
|
* 目标费率 |
||||
|
*/ |
||||
|
private BigDecimal targetRoiRate; |
||||
|
|
||||
|
/** |
||||
|
* 实际发货金额 |
||||
|
*/ |
||||
|
private BigDecimal realDispatchAmt; |
||||
|
|
||||
|
/** |
||||
|
* 核销费用 |
||||
|
*/ |
||||
|
private BigDecimal costAmt; |
||||
|
|
||||
|
/** |
||||
|
* 实际费率 |
||||
|
*/ |
||||
|
private BigDecimal realRoiRate; |
||||
|
|
||||
|
/** |
||||
|
* 已批准费用金额 |
||||
|
*/ |
||||
|
private BigDecimal costPassAmt; |
||||
|
|
||||
|
/** |
||||
|
* 申请中费用金额 |
||||
|
*/ |
||||
|
private BigDecimal costApplyingAmt; |
||||
|
|
||||
|
/** |
||||
|
* 已核销费用金额 |
||||
|
*/ |
||||
|
private BigDecimal checkedAmt; |
||||
|
|
||||
|
/** |
||||
|
* 未核销金额(申请中) |
||||
|
*/ |
||||
|
private BigDecimal checkingAmt; |
||||
|
|
||||
|
/** |
||||
|
* 未申请核销金额 |
||||
|
*/ |
||||
|
private BigDecimal noCheckAmt; |
||||
|
|
||||
|
/** |
||||
|
* 已释放金额 |
||||
|
*/ |
||||
|
private BigDecimal releaseAmt; |
||||
|
|
||||
|
/** |
||||
|
* 冻结中 |
||||
|
*/ |
||||
|
private BigDecimal frozenAmt; |
||||
|
|
||||
|
} |
@ -0,0 +1,21 @@ |
|||||
|
package com.qs.serve.modules.bir.entity.vo; |
||||
|
|
||||
|
import com.qs.serve.modules.goods.entity.dto.TbsCenterDto; |
||||
|
import com.qs.serve.modules.tbs.entity.vo.TbsBudgetSimpleVo; |
||||
|
import lombok.Data; |
||||
|
import java.util.List; |
||||
|
/** |
||||
|
* @author YenHex |
||||
|
* @since 2023/7/3 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class BirCenterCostRateMain { |
||||
|
|
||||
|
private TbsCenterDto center1; |
||||
|
private TbsCenterDto center2; |
||||
|
private TbsBudgetSimpleVo budgetInfo; |
||||
|
private BirCenterCostRateItem yearInfo; |
||||
|
private List<BirCenterCostRateItem> seasonList; |
||||
|
private List<BirCenterCostRateItem> monthList; |
||||
|
|
||||
|
} |
@ -0,0 +1,43 @@ |
|||||
|
package com.qs.serve.modules.tbs.entity.vo; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* 预算 实体类 |
||||
|
* @author YenHex |
||||
|
* @since 2022-11-12 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class TbsBudgetSimpleVo implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 1L; |
||||
|
|
||||
|
/** 预算编码 */ |
||||
|
private String budgetCode; |
||||
|
|
||||
|
/** 预算名称 */ |
||||
|
private String budgetName; |
||||
|
|
||||
|
/** 科目id */ |
||||
|
private Long subjectId; |
||||
|
|
||||
|
/** 科目编码 */ |
||||
|
private String subjectCode; |
||||
|
|
||||
|
/** 科目名称 */ |
||||
|
private String subjectName; |
||||
|
|
||||
|
/** 预算考核期编码 */ |
||||
|
private String scheduleCode; |
||||
|
|
||||
|
/** 预算考核期名称 */ |
||||
|
private String scheduleName; |
||||
|
|
||||
|
/** 备注 */ |
||||
|
private String remark; |
||||
|
|
||||
|
} |
||||
|
|
Loading…
Reference in new issue