xf 924fdcab22 Merge branch 'master' of http://110.188.24.182:10023/Fengwo/hotline 1 år sedan
..
Caching eb51890abf callrecord 1 år sedan
CallCenter eb51890abf callrecord 1 år sedan
FlowEngine 793d3ef2ab 1 år sedan
Identity 4d9e319dcd definition 2 år sedan
KnowledgeBase 43f5f8ae38 cappublish 1 år sedan
Orders f4db273b47 1 år sedan
Permissions 4c3e601f30 telgroup 1 år sedan
Push a8f9624704 1 år sedan
Realtimes 387f905e8c hotlinehub 1 år sedan
SeedData 793d3ef2ab 1 år sedan
Settings 2b521636a2 1 år sedan
Tools e65e6ee0d8 timelimit 2 år sedan
Users 387f905e8c hotlinehub 1 år sedan
Hotline.csproj 11e8afd2b2 visit 1 år sedan
README.md ff96724ce2 nuget change 2 år sedan

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