package com.jsh.erp.datasource.vo; import com.jsh.erp.datasource.entities.Unit; import lombok.Data; import java.math.BigDecimal; /** * @Description TODO * @Author MS.BLUE * @Date 2025-04-15 */ @Data public class Material4UnitPrice extends Unit { /** *基础单位 销售价格 */ private BigDecimal basicUnitPrice; /** *其他单位 销售价格 */ private BigDecimal otherUnitPrice; /** *其他单位2 销售价格 */ private BigDecimal otherUnitTwoPrice; /** *其他单位3 销售价格 */ private BigDecimal otherUnitThreePrice; /** *基础单位 基础数量 */ private BigDecimal basicUnitNumber; /** *其他单位 基础数量 */ private BigDecimal otherUnitNumber; /** *其他单位2 基础数量 */ private BigDecimal otherUnitTwoNumber; /** *其他单位3 基础数量 */ private BigDecimal otherUnitThreeNumber; }