田爽 605587b632 日志 hai 1 ano
..
Ai 592ba71839 aivisit hai 1 ano
Article db70474175 bulletin hai 1 ano
Caching dc67bb86b2 callrecord hai 1 ano
CallCenter 16b47a5299 callrecord hai 1 ano
DataSharing 738eee3c45 hai 1 ano
Enterprise ac951f26cc 企业信息获取 hai 1 ano
File f2233f5049 附件 hai 1 ano
FlowEngine 0a352db591 fixed: recall to start can not handle hai 1 ano
Identity 36c5bc4451 hai 1 ano
KnowledgeBase c254a8e7a7 知识库 hai 1 ano
Orders e268e90355 hotspotCode hai 1 ano
Permissions 4208d4a37e aivisit hai 1 ano
Push f1055216b7 push hai 1 ano
Quality b60d07895c 质检 hai 1 ano
Realtimes 49bc99ad30 hai 1 ano
SeedData d9956c6a42 workflow reconstruction hai 1 ano
Settings 605587b632 日志 hai 1 ano
Tools 948b76037d 日志过滤器 hai 1 ano
Users 16b47a5299 callrecord hai 1 ano
Hotline.csproj 0b737f6c7a 智能质检推送 hai 1 ano
README.md ff96724ce2 nuget change %!s(int64=2) %!d(string=hai) anos

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