This commit is contained in:
那些花儿
2025-09-25 14:27:24 +08:00
parent b4ca8a30a5
commit b210758ee8
4 changed files with 15 additions and 7 deletions
@@ -4,6 +4,7 @@ import com.budwk.app.base.model.BaseModel;
import lombok.Getter;
import lombok.Setter;
import org.nutz.dao.entity.annotation.*;
import org.nutz.dao.interceptor.annotation.PrevInsert;
@Getter
@Setter
@@ -11,9 +12,11 @@ import org.nutz.dao.entity.annotation.*;
@Comment("流程分类")
public class ProcessCategory extends BaseModel {
@Id
@Name
@Comment("ID")
private Long id;
@PrevInsert(uu32 = true)
@ColDefine(type = ColType.VARCHAR, width = 32)
private String id;
@Comment("名称")
@Column