java 实体类型long改int
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run

This commit is contained in:
15683799673
2025-06-27 20:28:33 +08:00
parent f85f2a75e0
commit e55ecffb98
43 changed files with 124 additions and 363 deletions

View File

@@ -22,7 +22,7 @@ public class TdFactory extends TenantEntity {
private static final long serialVersionUID = 1L;
/**
*
*
*/
@TableId(value = "id")
private Long id;
@@ -42,15 +42,4 @@ public class TdFactory extends TenantEntity {
*/
private String remark;
/**
* 数据状态1有效0无效
*/
private Long dataState;
/**
* 搜索值
*/
private String searchValue;
}

View File

@@ -21,7 +21,7 @@ import jakarta.validation.constraints.*;
public class TdFactoryBo extends BaseEntity {
/**
*
*
*/
@NotNull(message = "不能为空", groups = { EditGroup.class })
private Long id;
@@ -43,16 +43,5 @@ public class TdFactoryBo extends BaseEntity {
*/
private String remark;
/**
* 数据状态1有效0无效
*/
@NotNull(message = "数据状态1有效0无效不能为空", groups = { AddGroup.class, EditGroup.class })
private Long dataState;
/**
* 搜索值
*/
private String searchValue;
}

View File

@@ -29,7 +29,7 @@ public class TdFactoryVo implements Serializable {
private static final long serialVersionUID = 1L;
/**
*
*
*/
@ExcelProperty(value = "")
private Long id;
@@ -52,17 +52,5 @@ public class TdFactoryVo implements Serializable {
@ExcelProperty(value = "备注")
private String remark;
/**
* 数据状态1有效0无效
*/
@ExcelProperty(value = "数据状态1有效0无效")
private Long dataState;
/**
* 搜索值
*/
@ExcelProperty(value = "搜索值")
private String searchValue;
}