|
@@ -1,22 +1,19 @@
|
|
|
package org.jeecg.modules.customColumns.entity;
|
|
|
|
|
|
-import java.io.Serializable;
|
|
|
-import java.io.UnsupportedEncodingException;
|
|
|
-import java.util.Date;
|
|
|
-import java.math.BigDecimal;
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
-import com.baomidou.mybatisplus.annotation.TableLogic;
|
|
|
-import lombok.Data;
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
-import org.springframework.format.annotation.DateTimeFormat;
|
|
|
-import org.jeecgframework.poi.excel.annotation.Excel;
|
|
|
-import org.jeecg.common.aspect.annotation.Dict;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
+import lombok.Data;
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
import lombok.experimental.Accessors;
|
|
|
+import org.jeecg.common.aspect.annotation.Dict;
|
|
|
+import org.jeecgframework.poi.excel.annotation.Excel;
|
|
|
+import org.springframework.format.annotation.DateTimeFormat;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
|
|
|
/**
|
|
|
* @Description: 自定义列记录表
|
|
@@ -33,8 +30,9 @@ public class CustomColumns implements Serializable {
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
/**主键*/
|
|
|
+ @TableId(type = IdType.ASSIGN_ID)
|
|
|
@ApiModelProperty(value = "主键")
|
|
|
- private java.lang.Integer id;
|
|
|
+ private java.lang.String id;
|
|
|
/**登录账号*/
|
|
|
@Excel(name = "登录账号", width = 15)
|
|
|
@ApiModelProperty(value = "登录账号")
|