xiejun
2023-09-05 ce5dce2d7f6eefbbe863d99e8adfa5d4ed5e229a
Merge remote-tracking branch 'origin/master'
已修改6个文件
16 ■■■■ 文件已修改
Source/UBCS-WEB/src/components/FormTemplate/index.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/UBCS-WEB/src/views/docking/data.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/UBCS-WEB/src/views/docking/task.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/UBCS/ubcs-service/ubcs-code/src/main/resources/mapper/CodeCLassifyMapper.xml 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/UBCS/ubcs-service/ubcs-ddl/src/main/java/com/vci/ubcs/ddl/mapper/DdlDmMapper.java 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/UBCS/ubcs-service/ubcs-ddl/src/main/java/com/vci/ubcs/ddl/processor/ddl/DdlMapperProcessor.java 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/UBCS-WEB/src/components/FormTemplate/index.vue
@@ -84,7 +84,7 @@
import FormTemplate from "./FormTemplate";
import ResembleQuery from "./ResembleQuery";
export default {
    name: "FormTemplateDialog",
  name: "FormTemplateDialog",
  components: { ResembleQuery, FormTemplate },
  props: {
    visible: {
Source/UBCS-WEB/src/views/docking/data.vue
@@ -97,7 +97,7 @@
          sortable:true,
          // width: 150,
          formatter: function (row, column) {
            if (row.sendType === 'Released') {
            if (row.sendType === 'Enabled') {
              return '发布';
            } else if (row.sendType === 'TakeBack') {
              return '回收';
Source/UBCS-WEB/src/views/docking/task.vue
@@ -102,12 +102,12 @@
            width: 150
          },
          {
            label: '数据情况',
            label: '推送类型',
            prop: 'sendType',
            sortable:true,
            width: 100,
            formatter: function (row, column) {
              if (row.sendType === 'Released') {
              if (row.sendType === 'Enabled') {
                return '发布';
              } else if (row.sendType === 'TakeBack') {
                return '回收';
Source/UBCS/ubcs-service/ubcs-code/src/main/resources/mapper/CodeCLassifyMapper.xml
@@ -103,7 +103,7 @@
                codeclassify0.tenant_id = #{tenantId}
            </if>
        </where>
        order by id asc
        order by lastmodifytime asc
    </select>
    <select id="selectAllLevelChildHasPath" resultMap="plCodeClassifyResultMap">
@@ -304,7 +304,7 @@
        <if test="tenantId != null and tenantId != ''">
            and codeclassify0.tenant_id = #{tenantId}
        </if>
        order by id asc
        order by lastmodifytime desc
    </select>
    <select id="selectClassifyByKeyAndReseRel" resultMap="plCodeClassifyResultMap">
Source/UBCS/ubcs-service/ubcs-ddl/src/main/java/com/vci/ubcs/ddl/mapper/DdlDmMapper.java
@@ -17,7 +17,7 @@
     * @param columnName 列名称
     * @return 受影响的行数
     */
    @Update("alter table ${tableName} DROP COLUMN ${columnName}")
    @Update("alter table ${tableName} DROP COLUMN \"${columnName}\"")
    @Override
    int dropTableColumn(@Param("tableName")String tableName, @Param("columnName")String columnName);
Source/UBCS/ubcs-service/ubcs-ddl/src/main/java/com/vci/ubcs/ddl/processor/ddl/DdlMapperProcessor.java
@@ -152,6 +152,6 @@
     * @return 受影响的行数
     */
    public int dropTableColumn(String tableName,String columnName){
        return mapper.dropTableColumn(tableName,columnName);
        return mapper.dropTableColumn(tableName,columnName.toUpperCase());
    }
}