change(hwmom-mes):为物料类型 ID 添加主键注解

- 在 BaseMaterialType 类中的 matrialTypeId 字段上添加了 @TableId 注解,指定主键生成策略为 AUTO,即自动增长
master
zch 2 weeks ago
parent 5379f1daea
commit 3f3c0ffbd4

@ -24,6 +24,7 @@ public class BaseMaterialType extends TenantEntity {
/**
* ID
*/
@TableId(value = "matrial_type_id", type = IdType.AUTO)
private Long matrialTypeId;
/**

Loading…
Cancel
Save