| | |
| | | package cn.iocoder.yudao.module.erp.dal.dataobject.purchase; |
| | | |
| | | import cn.iocoder.yudao.framework.mybatis.core.dataobject.BaseDO; |
| | | import cn.iocoder.yudao.module.erp.dal.dataobject.product.ErpProductDO; |
| | | import com.baomidou.mybatisplus.annotation.KeySequence; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | |
| | | */ |
| | | private Long requestId; |
| | | /** |
| | | * 产品编号 |
| | | * 物料编号 |
| | | * |
| | | * 关联 {@link ErpProductDO#getId()} |
| | | * 关联 {@link cn.iocoder.yudao.module.mdm.api.item.dto.MdmItemRespDTO#getId()} |
| | | */ |
| | | private Long productId; |
| | | /** |
| | | * 产品单位编号 |
| | | * 计量单位编号 |
| | | * |
| | | * 冗余 {@link ErpProductDO#getUnitId()} |
| | | * 关联 {@link cn.iocoder.yudao.module.mdm.api.unitmeasure.dto.MdmUnitMeasureRespDTO#getId()} |
| | | */ |
| | | private Long productUnitId; |
| | | |