12345678910111213141516171819 |
- package utils
- var (
- IdVerify = Rules{"ID": {NotEmpty()}}
- ApiVerify = Rules{"Path": {NotEmpty()}, "Description": {NotEmpty()}, "ApiGroup": {NotEmpty()}, "Method": {NotEmpty()}}
- MenuVerify = Rules{"Path": {NotEmpty()}, "ParentId": {NotEmpty()}, "Name": {NotEmpty()}, "Component": {NotEmpty()}, "Sort": {Ge("0")}}
- MenuMetaVerify = Rules{"Title": {NotEmpty()}}
- LoginVerify = Rules{"CaptchaId": {NotEmpty()}, "Captcha": {NotEmpty()}, "Username": {NotEmpty()}, "Password": {NotEmpty()}}
- RegisterVerify = Rules{"Username": {NotEmpty()}, "NickName": {NotEmpty()}, "Password": {NotEmpty()}, "AuthorityId": {NotEmpty()}}
- RegisterWxVerify = Rules{"Username": {NotEmpty()}, "NickName": {NotEmpty()}, "OpenId": {NotEmpty()}, "HeaderImg": {NotEmpty()}}
- PageInfoVerify = Rules{"Page": {NotEmpty()}, "PageSize": {NotEmpty()}}
- CustomerVerify = Rules{"CustomerName": {NotEmpty()}, "CustomerPhoneData": {NotEmpty()}}
- AutoCodeVerify = Rules{"Abbreviation": {NotEmpty()}, "StructName": {NotEmpty()}, "PackageName": {NotEmpty()}, "Fields": {NotEmpty()}}
- AuthorityVerify = Rules{"AuthorityId": {NotEmpty()}, "AuthorityName": {NotEmpty()}, "ParentId": {NotEmpty()}}
- AuthorityIdVerify = Rules{"AuthorityId": {NotEmpty()}}
- OldAuthorityVerify = Rules{"OldAuthorityId": {NotEmpty()}}
- ChangePasswordVerify = Rules{"Username": {NotEmpty()}, "Password": {NotEmpty()}, "NewPassword": {NotEmpty()}}
- SetUserAuthorityVerify = Rules{"AuthorityId": {NotEmpty()}}
- )
|