类的使用
net.sohelp.boot.engine.db.vo.PropertyVO
使用PropertyVO的程序包
程序包
说明
-
net.sohelp.boot.dev.web.dev.db中PropertyVO的使用
返回变量类型为PropertyVO的类型的net.sohelp.boot.dev.web.dev.db中的方法修饰符和类型方法说明TableController.getTableFields(String table) 获取数据表的字段信息 通过表名称获取对应数据表的所有字段信息,并封装成分页结果返回读取字段列表接口 根据表名和数据源名称读取对应表的字段列表,并返回字段的详细信息 -
net.sohelp.boot.engine.db.service中PropertyVO的使用
返回变量类型为PropertyVO的类型的net.sohelp.boot.engine.db.service中的方法修饰符和类型方法说明EntityService.getPropertyByAutocode(EntityVO entityVO) 根据传入的实体对象,获取该实体对象中类型为自动编码的属性列表EntityService.getPropertyByFile(EntityVO entityVO) 获取指定实体对象中包含文件或图片类型的属性列表EntityExtService.list()查询所有扩展字段信息,并封装成PropertyVO对象列表返回。 -
net.sohelp.boot.engine.db.table.script中PropertyVO的使用
修饰符和类型方法说明abstract StringBaseTableScriptCreator.alterField(PropertyVO propertyVO) 生成修改字段的SQL语句abstract StringBaseTableScriptCreator.createIndexKey(PropertyVO propertyVO) 生成创建索引的SQL语句abstract StringBaseTableScriptCreator.createPrimaryKey(PropertyVO propertyVO) 生成创建主键的SQL语句abstract StringBaseTableScriptCreator.dropIndexKey(PropertyVO propertyVO) 生成删除索引的SQL语句abstract StringBaseTableScriptCreator.getMappingType(PropertyVO propertyVO) 获取属性对应的数据库字段类型映射booleanBaseTableScriptCreator.isEqualsProperty(PropertyVO propertyVO) 判断给定属性与数据库中对应字段是否相等(类型和长度)booleanBaseTableScriptCreator.isEqualsProperty(PropertyVO xmlProperty, PropertyVO fieldPropertyVO) 判断两个属性对象是否相等(类型和长度)abstract booleanBaseTableScriptCreator.isExistIndexKey(PropertyVO propertyVO) 判断指定属性的索引是否存在 -
net.sohelp.boot.engine.db.table.script.interfaces中PropertyVO的使用
返回变量类型为PropertyVO的类型的net.sohelp.boot.engine.db.table.script.interfaces中的方法修饰符和类型方法说明TableScriptInterface.alterField(PropertyVO propertyVO) 修改字段属性TableScriptInterface.createField(PropertyVO propertyVO) 创建字段TableScriptInterface.createPrimaryKey(PropertyVO propertyVO) 为主键字段创建主键约束TableScriptInterface.dropField(PropertyVO propertyVO) 删除字段TableScriptInterface.getMappingType(PropertyVO propertyVO) 获取字段的映射类型booleanTableScriptInterface.isEqualsProperty(PropertyVO propertyVO) 判断字段属性是否相等booleanTableScriptInterface.isEqualsProperty(PropertyVO xmlProperty, PropertyVO fieldPropertyVO) 比较两个属性对象是否相等 -
net.sohelp.boot.engine.db.table.script.mssql中PropertyVO的使用
返回变量类型为PropertyVO的类型的net.sohelp.boot.engine.db.table.script.mssql中的方法修饰符和类型方法说明Mssql2000TableScriptCreator.alterField(PropertyVO propertyVO) 修改字段类型或长度的SQL语句Mssql2000TableScriptCreator.createField(PropertyVO propertyVO) 添加新字段的SQL语句Mssql2000TableScriptCreator.createIndexKey(PropertyVO propertyVO) 创建索引的SQL语句Mssql2000TableScriptCreator.createPrimaryKey(PropertyVO propertyVO) 创建主键约束Mssql2000TableScriptCreator.dropField(PropertyVO propertyVO) 删除指定字段的SQL语句Mssql2000TableScriptCreator.dropIndexKey(PropertyVO propertyVO) 删除索引的SQL语句Mssql2000TableScriptCreator.getMappingType(PropertyVO propertyVO) 获取字段对应的数据库类型booleanMssql2000TableScriptCreator.isExistIndexKey(PropertyVO propertyVO) 判断指定字段上的索引是否存在 -
net.sohelp.boot.engine.db.table.script.mysql中PropertyVO的使用
返回变量类型为PropertyVO的类型的net.sohelp.boot.engine.db.table.script.mysql中的方法修饰符和类型方法说明MysqlTableScriptCreator.alterField(PropertyVO propertyVO) 修改字段的SQL脚本MysqlTableScriptCreator.createField(PropertyVO propertyVO) 创建字段的SQL脚本MysqlTableScriptCreator.createIndexKey(PropertyVO propertyVO) 创建索引的SQL脚本MysqlTableScriptCreator.createPrimaryKey(PropertyVO propertyVO) 创建主键的SQL脚本MysqlTableScriptCreator.dropField(PropertyVO propertyVO) 删除字段的SQL脚本MysqlTableScriptCreator.dropIndexKey(PropertyVO propertyVO) 删除索引的SQL脚本MysqlTableScriptCreator.getMappingType(PropertyVO propertyVO) 获取字段类型的映射关系booleanMysqlTableScriptCreator.isExistIndexKey(PropertyVO propertyVO) 检查索引是否存在 -
net.sohelp.boot.engine.db.utils中PropertyVO的使用
修饰符和类型方法说明static voidDataTypeValidateUtil.validateDate(PropertyVO propertyVO, Object value) 验证给定值是否符合日期时间格式。static voidDataTypeValidateUtil.validateFloat(PropertyVO propertyVO, Object value) 验证给定值是否符合实数(浮点数)数据格式。static voidDataTypeValidateUtil.validateInteger(PropertyVO propertyVO, Object value) 验证给定值是否符合整型数据格式。 -
net.sohelp.boot.engine.web.utils中PropertyVO的使用
修饰符和类型方法说明static voidJavaTypeConvert.copyJavaProperty(PropertyVO propertyVO, PropertyVO javaPropertyVO) 将原始属性信息复制到Java属性对象中,并完成Java类型及驼峰命名字段的设置。static StringJavaTypeConvert.toJavaType(PropertyVO propertyVO) 根据传入的属性对象中的数据库字段类型,将其转换为对应的Java类型字符串。类型变量类型为PropertyVO的net.sohelp.boot.engine.web.utils中的方法参数修饰符和类型方法说明static voidFormPropertyConvertUtil.toJavaProperties(EntityVO entityVO, List<PropertyVO> javaProperties) 将实体中的属性信息更新到Java属性列表中,并补充缺失的字段以保证结构一致性。static voidGridPropertyConvertUtil.toJavaProperties(EntityVO entityVO, List<PropertyVO> javaProperties) 将实体对象的属性转换为Java属性列表,并处理新增字段 -
net.sohelp.boot.engine.web.vo.form中PropertyVO的使用
-
net.sohelp.boot.engine.web.vo.grid中PropertyVO的使用