Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
hao-li authored Nov 7, 2018
1 parent ad865ac commit 5aaa089
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
## 背景
系统中涉及到金额的字段,View 层表现的时候一般都是以****为单位使用小数形式展示,不过 Domain 层存储时从空间、性能、容错角度出发,经常以****为单位,用整型来存储。

> 除了金额外,小数位数固定的**面积****长度**等场景使用起来也很方便。
在 Lavarel 中,可以在 Model 中添加属性方法进行转换

```php
Expand All @@ -23,6 +21,7 @@ public function setAmountAttribute($value)
```

不过涉及金额的字段比较多时就需要定义很多相同逻辑的函数,本项目即将该逻辑抽出为 Trait,简化金额字段相关的处理。
> 除了金额外,小数位数固定的**面积****长度**等场景使用起来也很方便。
## 原理

Expand Down

0 comments on commit 5aaa089

Please sign in to comment.