Files
WorkNote/SanPinPLM/数据库/批量设置是否启用物料编码器.md
2025-04-14 14:00:10 +08:00

11 lines
298 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

是否启用物料编码器,在数据库中受到 `cfobjkind` 表的 `usecoder` 属性设置为2代表启用
批量设置的代码如下(可 [从数据库中查询取得codeid值](从数据库中查询取得codeid值.md)
```SQL
update cfobjkind
set usecoder = 2
where codeid = 22
```