lihang
2023-04-25 dd3a6c681f938fd53d5f6cc3a4fcee40e71b259c
Source/UBCS/ubcs-service/ubcs-ddl/src/main/java/com/vci/ubcs/ddl/processor/dll/DllBehavior.java
@@ -1,6 +1,6 @@
package com.vci.ubcs.ddl.processor.dll;
import com.vci.ubcs.omd.vo.OmdBtmTypeAttributeVO;
import com.vci.ubcs.omd.vo.BtmTypeAttributeVO;
import java.util.List;
@@ -46,21 +46,21 @@
    * @param attributeVOList 属性的立碑
    * @return sql语句
    */
   String getCreateSqlByAttributeForBtm(List<OmdBtmTypeAttributeVO> attributeVOList);
   String getCreateSqlByAttributeForBtm(List<BtmTypeAttributeVO> attributeVOList);
   /**
    * 处理整数类型的sql转换
    * @param attributeVO 属性
    * @return sql
    */
   String dealNumberCreateSql(OmdBtmTypeAttributeVO attributeVO);
   String dealNumberCreateSql(BtmTypeAttributeVO attributeVO);
   /**
    * 调用处理默认值和非空
    * @param attributeVO 属性
    * @return 执行结果
    */
   String dealDefaultAndNull(OmdBtmTypeAttributeVO attributeVO);
   String dealDefaultAndNull(BtmTypeAttributeVO attributeVO);
   /**
    * 处理默认值
@@ -74,32 +74,32 @@
    * @param attributeVO 属性
    * @return sql
    */
   String dealDoubleCreateSql(OmdBtmTypeAttributeVO attributeVO);
   String dealDoubleCreateSql(BtmTypeAttributeVO attributeVO);
   /**
    * 处理非空
    * @return sql
    */
   String dealNullableSql(OmdBtmTypeAttributeVO attributeVO);
   String dealNullableSql(BtmTypeAttributeVO attributeVO);
   /**
    * 处理布尔类型的sql转换
    * @param attributeVO 属性
    * @return sql
    */
   String dealBooleanCreateSql(OmdBtmTypeAttributeVO attributeVO);
   String dealBooleanCreateSql(BtmTypeAttributeVO attributeVO);
   /**
    * 处理日期时间类型的sql转换
    * @param attributeVO 属性
    * @return sql
    */
   String dealDateTimeCreateSql(OmdBtmTypeAttributeVO attributeVO);
   String dealDateTimeCreateSql(BtmTypeAttributeVO attributeVO);
   /**
    * 处理字符串类型的sql转换
    * @param attributeVO 属性
    * @return sql
    */
   String dealStringCreateSql(OmdBtmTypeAttributeVO attributeVO);
   String dealStringCreateSql(BtmTypeAttributeVO attributeVO);
}