update 更改模块名称

This commit is contained in:
lijiarao
2023-09-05 09:10:12 +08:00
parent 248a2dbe8a
commit 8522fc6f34
1501 changed files with 4 additions and 47397 deletions
@@ -0,0 +1,38 @@
package com.jero.modules.activiti.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
/**
*
*@author liJiaRao
*@date 2023-08-04 16:04
*/
/**
* 二进制资源表
*/
@Data
@TableName(value = "act_ge_bytearray")
public class ActGeBytearray {
@TableId(value = "ID_", type = IdType.INPUT)
private String id;
@TableField(value = "REV_")
private Integer rev;
@TableField(value = "NAME_")
private String name;
@TableField(value = "DEPLOYMENT_ID_")
private String deploymentId;
@TableField(value = "BYTES_")
private byte[] bytes;
@TableField(value = "GENERATED_")
private Integer generated;
}