|
|
@ -1,6 +1,8 @@ |
|
|
|
package com.ruoyi.financial.domain; |
|
|
|
|
|
|
|
import java.math.BigDecimal; |
|
|
|
|
|
|
|
import io.swagger.annotations.ApiModelProperty; |
|
|
|
import org.apache.commons.lang3.builder.ToStringBuilder; |
|
|
|
import org.apache.commons.lang3.builder.ToStringStyle; |
|
|
|
import com.ruoyi.common.annotation.Excel; |
|
|
@ -31,9 +33,7 @@ public class CompanyCost extends BaseEntity |
|
|
|
@Excel(name = "月份") |
|
|
|
private Long costMonth; |
|
|
|
|
|
|
|
/** 经营成本 */ |
|
|
|
@Excel(name = "经营成本") |
|
|
|
private Long operatingCosts; |
|
|
|
|
|
|
|
|
|
|
|
/** 工资费用 */ |
|
|
|
@Excel(name = "工资费用") |
|
|
@ -55,9 +55,9 @@ public class CompanyCost extends BaseEntity |
|
|
|
@Excel(name = "其他费用") |
|
|
|
private BigDecimal ohterExpenses; |
|
|
|
|
|
|
|
/** 业务成本 */ |
|
|
|
@Excel(name = "业务成本") |
|
|
|
private BigDecimal businessCost; |
|
|
|
/** 经营成本 */ |
|
|
|
@Excel(name = "经营成本合计") |
|
|
|
private Long operatingCosts; |
|
|
|
|
|
|
|
/** 运输费用 */ |
|
|
|
@Excel(name = "运输费用") |
|
|
@ -83,6 +83,10 @@ public class CompanyCost extends BaseEntity |
|
|
|
@Excel(name = "业务提成") |
|
|
|
private BigDecimal businessCommission; |
|
|
|
|
|
|
|
/** 业务成本 */ |
|
|
|
@Excel(name = "业务成本合计") |
|
|
|
private BigDecimal businessCost; |
|
|
|
|
|
|
|
public void setId(Long id) |
|
|
|
{ |
|
|
|
this.id = id; |
|
|
|