update 更改模块名称
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user