const findData = await Assets.findOne({
where: {
barCode: {
[Op.like]: `%${getCode}%`,
},
},
}); 使用 Sequelize 进行不区分大小写的数据库查找操作的方法。
const findData = await Assets.findOne({
where: {
barCode: {
[Op.like]: `%${getCode}%`,
},
},
});