This commit is contained in:
yubaolee
2023-08-11 17:47:02 +08:00
parent 2968aa27a2
commit 65dfe66dda
73 changed files with 3655 additions and 0 deletions

32
docs/core/specialist.md Normal file
View File

@@ -0,0 +1,32 @@
# 开发规范
## 新增数据库名称规范
子系统名称+业务名称+表尾,其中表尾名称规则如下:
- 基础主数据以Mst结尾
- 普通业务表以Tbl结尾
- 业务明细表以Dtbl结尾
比如:
- WMS系统客户主数据表WmsCustomerMst
- WMS系统入库订单头表WmsInboundOrderTbl
- WMS系统入库订单明细表WmsInboundOrderDtbl
## 数据库字段类型
主键id统一使用Domain:PrimaryKey针对SqlServer数据库非Sql Server根据需要定义
状态类,标识类的字段统一使用bit not null
表示分类的字段统一使用PrimaryKey。数值从Category中获取。