taobig

Results 22 issues of taobig
trafficstars

目前的goctl会把db的decimal类型生成为float64/sql.NullFloat64。 希望使用github.com/shopspring/decimal的decimal.Decimal/decimal.NullDecimal来接收db的decimal类型,这样才能满足高精度的使用场景。或者希望能改进goctl设计能让使用者自定义类型映射。

stale

Sometimes we don't want to update all columns(eg. update `status` field). I think we can provide the `model.UpdateColumn()` to update the specified columns. related issue: #1910 , but for my...

https://github.com/zeromicro/go-zero/issues/1994

新增导入导出功能,便于批量迁移脚本配置。

## Describe the feature 帮助里增加查看当前版本的选项,比如-v选项可以查看当前的版本。 ## Motivation ## Related Issues

Example code ``` $content = ""; $dom = HtmlDomParser::str_get_html($content); $newsContent = $dom->find(".test", 0)->text(); var_dump(newsContent); ``` Expected result: `string(0) ""` Result: `string(8) ""`

### What steps will reproduce the problem? ``` /** * This is the model class for table "{{%employee}}". * * @property int $id * @property string $account username * ......