From 6b5f7c66fc40d7f6099d561e31a34fbd50dd20d3 Mon Sep 17 00:00:00 2001
From: 云 <2163098428@qq.com>
Date: 星期三, 01 七月 2026 15:54:57 +0800
Subject: [PATCH] 初始化项目

---
 yudao-module-mdm/src/main/java/cn/iocoder/yudao/module/mdm/dal/dataobject/item/MdmItemSkuDO.java |   99 +++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 99 insertions(+), 0 deletions(-)

diff --git a/yudao-module-mdm/src/main/java/cn/iocoder/yudao/module/mdm/dal/dataobject/item/MdmItemSkuDO.java b/yudao-module-mdm/src/main/java/cn/iocoder/yudao/module/mdm/dal/dataobject/item/MdmItemSkuDO.java
new file mode 100644
index 0000000..858d534
--- /dev/null
+++ b/yudao-module-mdm/src/main/java/cn/iocoder/yudao/module/mdm/dal/dataobject/item/MdmItemSkuDO.java
@@ -0,0 +1,99 @@
+package cn.iocoder.yudao.module.mdm.dal.dataobject.item;
+
+import cn.iocoder.yudao.framework.mybatis.core.dataobject.BaseDO;
+import com.baomidou.mybatisplus.annotation.KeySequence;
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableName;
+import lombok.*;
+
+import java.math.BigDecimal;
+
+/**
+ * MDM 鐗╂枡 SKU DO
+ *
+ * @author 鑺嬮亾婧愮爜
+ */
+@TableName("mdm_item_sku")
+@KeySequence("mdm_item_sku_seq")
+@Data
+@EqualsAndHashCode(callSuper = true)
+@ToString(callSuper = true)
+@Builder
+@NoArgsConstructor
+@AllArgsConstructor
+public class MdmItemSkuDO extends BaseDO {
+
+    /**
+     * SKU 缂栧彿
+     */
+    @TableId
+    private Long id;
+
+    /**
+     * 鐗╂枡缂栧彿
+     */
+    private Long itemId;
+
+    /**
+     * SKU 缂栫爜
+     */
+    private String code;
+
+    /**
+     * SKU 鍚嶇О
+     */
+    private String name;
+
+    /**
+     * SKU 鏉$爜
+     */
+    private String barCode;
+
+    /**
+     * 闀垮害锛坈m锛�
+     */
+    private BigDecimal length;
+
+    /**
+     * 瀹藉害锛坈m锛�
+     */
+    private BigDecimal width;
+
+    /**
+     * 楂樺害锛坈m锛�
+     */
+    private BigDecimal height;
+
+    /**
+     * 姣涢噸锛坘g锛�
+     */
+    private BigDecimal grossWeight;
+
+    /**
+     * 鍑�閲嶏紙kg锛�
+     */
+    private BigDecimal netWeight;
+
+    /**
+     * 鎴愭湰浠�
+     */
+    private BigDecimal costPrice;
+
+    /**
+     * 閿�鍞环
+     */
+    private BigDecimal salePrice;
+
+    /**
+     * 鐘舵��
+     *
+     * 鏋氫妇 {@link cn.iocoder.yudao.framework.common.enums.CommonStatusEnum}
+     */
+    private Integer status;
+
+    /**
+     * 澶囨敞
+     */
+    private String remark;
+
+}
\ No newline at end of file

--
Gitblit v1.9.3