Skip to content

Commit

Permalink
update gitignore delete target
Browse files Browse the repository at this point in the history
  • Loading branch information
Jzow committed Aug 31, 2023
1 parent a588816 commit e3fbfa2
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
hs_err_pid*

.idea
/target
**/target
/logs.home_IS_UNDEFINED

**/*.iml
Expand Down
19 changes: 19 additions & 0 deletions domain/src/main/java/com/wansensoft/entities/Sequence.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
package com.wansensoft.entities;

import lombok.Data;

@Data
public class Sequence {

private String seqName;

private Long minValue;

private Long maxValue;

private Long currentValue;

private Integer incrementVal;

private String remark;
}

0 comments on commit e3fbfa2

Please sign in to comment.