xf 9ddb1a555d merge conflict 1 年之前
..
Article db70474175 bulletin 1 年之前
Caching 021b5cf564 onduty 1 年之前
CallCenter c25673423e trcallrecord 1 年之前
DataSharing 68399807a3 1 年之前
File 5ca8f8eee2 fixed: trace.filejson 1 年之前
FlowEngine 4eda8f025c fixed: OriginController 1 年之前
Identity 36c5bc4451 1 年之前
KnowledgeBase c254a8e7a7 知识库 1 年之前
Orders a5b996508d 附件 1 年之前
Permissions cc988418a3 permission 1 年之前
Push f1055216b7 push 1 年之前
Quality 331d65f3e1 质检 1 年之前
Realtimes d003686ae7 fixed: originResponse 1 年之前
SeedData d9956c6a42 workflow reconstruction 1 年之前
Settings b7ab3a0bba get next steps temp 1 年之前
Tools 73dd814f61 分词 1 年之前
Users 6e41ee2f0c tel 1 年之前
Hotline.csproj db70474175 bulletin 1 年之前
README.md ff96724ce2 nuget change 2 年之前

README.md

#### 代码编写规范

1. 参照微软推荐编码规范及约定

https://docs.microsoft.com/zh-cn/dotnet/csharp/fundamentals/coding-style/identifier-names https://docs.microsoft.com/zh-cn/dotnet/csharp/fundamentals/coding-style/coding-conventions https://docs.microsoft.com/zh-cn/dotnet/standard/design-guidelines/naming-guidelines

2. 该项目扩展规范
  • 枚举:命名以大写E为前缀,在文件列表中可以一目了然
  • 方法命名方式: 新增:Addxxx 删除:Removexxx 修改:Updatexxx 查询单条数据:Getxxx 查询多条数据:Queryxxx 查询所有数据:QueryAllxxx 异步方法以Async为后缀:GetxxxAsync
  • WebApi和Web项目的Action都尽量采用异步方法,但命名不加Async后缀(因为此处的调用方不以Action命名来调用,而是以路由规则来访问)
  • 字段以'_'加小写字母为前缀:_orderDomainService