nullcache

Results 3 issues of nullcache

#506 在ipad未横屏,或者只是手机端使用的时候弹窗提示 ”横屏使用效果更佳哦~“ 或者 ”目前暂时不支持移动设备哦,请关注后续更新“

为前后端模板添加RefreshToken实现 vben原来的前端应该是有RefreshToken接口的

**Describe the bug** schema里使用StructTag添加的tag,在types里生成的结构体里没有对应的tag **To Reproduce** Steps to reproduce the behavior: ```go // ent/schema/person.go func (Person) Fields() []ent.Field { return []ent.Field{ field.String("name").Comment("姓名").StructTag(`xlsx:"姓名"`).NotEmpty(), field.String("company").Comment("公司").StructTag(`xlsx:"公司"`).NotEmpty(), field.Int("age").StructTag(`xlsx:"年龄"`).Validate(isPositive), } } // types/types.go type PersonInfo...

enhancement