1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- 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;
- }
|