技术栈

SpringBoot源码阅读

Spring

Dubbo

蓝绿部署

架构设计

程序员需要具备的思维

源码阅读

线程池

如何读源码

code review训练

Spoon

编码问题

每日学习

@startuml
class SupplyChainInventoryRecord {
    + id : Long            // 主键
    + type : String        // 类型
    + channel : String     // 渠道
    + productId : String   // 货品ID
    + warehouseCode : String   // 仓库代码
    + invSubType : String      // 库存类型
    + scItemId : String        // 主单号
    + orderId : String         // 子单号
    + warehouseSubType : String    // 仓库操作子类型
    + quantity : String        // 数量
    + creator : String         // 创建人
    + operator : String        // 修改人
    + gmtCreate : DateTime     // 创建时间
    + gmtModified : DateTime   // 修改时间
    + detail : Text            // 详情
    + config : Text            // 配置
}

' 索引
hide methods
SupplyChainInventoryRecord : {key} id
SupplyChainInventoryRecord : {index} productId
SupplyChainInventoryRecord : {index} scItemId
@enduml