xf a732576c32 merge conflict il y a 11 mois
..
Attributes 5ac6909ea1 Merge from callcenter il y a 2 ans
Authentications 068824d6ba fix: sessionContext requriedUserId未赋值 il y a 11 mois
Cache 22b695a857 easycaching il y a 2 ans
Constants aadd9d098d 新增市州互转中办理结果的推送 il y a 11 mois
Dependency 9ca4b8cde5 ts il y a 1 an
Entities 7c682c3266 uncompleted il y a 11 mois
Events 5ac6909ea1 Merge from callcenter il y a 2 ans
Exceptions ae045ac628 il y a 1 an
Extensions 96914832c3 mod: CreateDynamicClass 首字符大写改为转为pascal命名法 il y a 1 an
Filters 0412925446 fixed: originController il y a 1 an
Locks 4cd28423ba distibutedlock il y a 2 ans
Options 4f7bcc45ba il y a 1 an
Password 8c5b1dd0f5 identity il y a 2 ans
Queues 41b7506ead queue il y a 1 an
README.md 5ac6909ea1 Merge from callcenter il y a 2 ans
XF.Domain.csproj 41b7506ead queue il y a 1 an

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