xf 87aced2838 pgsql %!s(int64=2) %!d(string=hai) anos
..
Caches 8784905f0d RolePermissionCache %!s(int64=2) %!d(string=hai) anos
CallCenter 6c02acea3e %!s(int64=2) %!d(string=hai) anos
FlowEngine 87aced2838 pgsql %!s(int64=2) %!d(string=hai) anos
Identity 4d9e319dcd definition %!s(int64=2) %!d(string=hai) anos
KnowledgeBase 87aced2838 pgsql %!s(int64=2) %!d(string=hai) anos
Orders 87aced2838 pgsql %!s(int64=2) %!d(string=hai) anos
Permissions 8784905f0d RolePermissionCache %!s(int64=2) %!d(string=hai) anos
Realtimes f78c46eaa9 新增分机休息审批流程处理 %!s(int64=2) %!d(string=hai) anos
SeedData 87aced2838 pgsql %!s(int64=2) %!d(string=hai) anos
Settings 87aced2838 pgsql %!s(int64=2) %!d(string=hai) anos
Tools e65e6ee0d8 timelimit %!s(int64=2) %!d(string=hai) anos
Users d6f8a62f6e %!s(int64=2) %!d(string=hai) anos
Hotline.csproj 5b3800123f %!s(int64=2) %!d(string=hai) anos
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