xf e4ba91270b Merge branch 'master' of http://110.188.24.182:10023/Fengwo/hotline há 1 ano atrás
..
Article 5aa750b400 record há 1 ano atrás
Caching 021b5cf564 onduty há 1 ano atrás
CallCenter d0789162b4 há 1 ano atrás
File a6a1e269d7 附件上传 há 1 ano atrás
FlowEngine 3e87d83800 há 1 ano atrás
Identity 380b08f2e5 repository há 1 ano atrás
KnowledgeBase 37c16c23ac 知识 há 1 ano atrás
Orders 2b7f4ff35c 观察 há 1 ano atrás
Permissions cf8b70f2ff 收藏 há 1 ano atrás
Push d829180a34 há 1 ano atrás
Quality 887cdb9364 质检 há 1 ano atrás
Realtimes 578ac9d190 article há 1 ano atrás
SeedData d9956c6a42 workflow reconstruction há 1 ano atrás
Settings a78fb116d0 sysdictype há 1 ano atrás
Tools e65e6ee0d8 timelimit há 2 anos atrás
Users a692003f6c onduty há 1 ano atrás
Hotline.csproj cba5bb637c onduty há 1 ano atrás
README.md ff96724ce2 nuget change há 2 anos atrás

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