2 changed files with 65 additions and 3 deletions
@ -0,0 +1,43 @@ |
|||||
|
package com.qs.serve.modules.tzc.entity.bo; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
import org.hibernate.validator.constraints.Length; |
||||
|
import org.springframework.format.annotation.DateTimeFormat; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
import java.math.BigDecimal; |
||||
|
import java.time.LocalDate; |
||||
|
|
||||
|
/** |
||||
|
* 返利适用期间 实体类 |
||||
|
* @author YenHex |
||||
|
* @since 2025-04-15 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class TzcRebatePeriodEditParam implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 1L; |
||||
|
|
||||
|
private Long id; |
||||
|
|
||||
|
//** 自动获取发货金额(针对返利业务) */
|
||||
|
//private BigDecimal autoDispatchAmt;
|
||||
|
|
||||
|
/** 实际发货金额 */ |
||||
|
private BigDecimal finalDispatchAmt; |
||||
|
|
||||
|
/** 周期结算 */ |
||||
|
//private BigDecimal autoRebatePeriodAmt;
|
||||
|
|
||||
|
/** 周期结算 */ |
||||
|
private BigDecimal finalRebatePeriodAmt; |
||||
|
|
||||
|
/** 周期结算 */ |
||||
|
//private BigDecimal autoRebateYearAmt;
|
||||
|
|
||||
|
/** 周期结算 */ |
||||
|
private BigDecimal finalRebateYearAmt; |
||||
|
|
||||
|
|
||||
|
} |
||||
|
|
Loading…
Reference in new issue