修改字段信息
parent
2d87630a34
commit
2587d6aeea
|
@ -4,6 +4,7 @@ import com.baomidou.mybatisplus.annotation.TableName;
|
|||
import com.muyu.common.core.enums.SysPayType;
|
||||
import com.muyu.common.core.web.domain.BaseEntity;
|
||||
import lombok.*;
|
||||
import lombok.experimental.SuperBuilder;
|
||||
|
||||
import java.util.function.Supplier;
|
||||
|
||||
|
@ -15,7 +16,7 @@ import java.util.function.Supplier;
|
|||
* @Date:2024/8/23 11:39
|
||||
*/
|
||||
@Data
|
||||
@Builder
|
||||
@SuperBuilder
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
@TableName("TableField")
|
||||
|
|
|
@ -20,5 +20,5 @@ public interface TableFieldServicelimt extends IService<TableField> {
|
|||
* @param limit 分页限制
|
||||
* @return 支付结果记录
|
||||
*/
|
||||
List<TableField> selectOrderPayByAppCodeAndLimit(String fieId, int limit);
|
||||
List<TableField> selectOrderPayByAppCodeAndLimit(Long fieId, int limit);
|
||||
}
|
||||
|
|
|
@ -154,7 +154,7 @@ public class DataSourceServiceImpl
|
|||
ArrayList<TableField> tableFields = new ArrayList<>();
|
||||
while (rs.next()) {
|
||||
TableField build = TableField.builder()
|
||||
.fieId(rs.getString("fieId"))
|
||||
.fieId(rs.getLong("fieId"))
|
||||
.type(rs.getString("type"))
|
||||
.collation(rs.getString("collation"))
|
||||
.Null(rs.getString("Null"))
|
||||
|
|
|
@ -23,7 +23,7 @@ public class TableFieldServicelimtImpl
|
|||
implements TableFieldServicelimt {
|
||||
|
||||
@Override
|
||||
public List<TableField> selectOrderPayByAppCodeAndLimit(String fieId, int limit) {
|
||||
public List<TableField> selectOrderPayByAppCodeAndLimit(Long fieId, int limit) {
|
||||
|
||||
LambdaQueryWrapper<TableField> objectLambdaQueryWrapper = new LambdaQueryWrapper<>();
|
||||
objectLambdaQueryWrapper.eq(TableField::getFieId, fieId);
|
||||
|
|
Loading…
Reference in New Issue