Skip to content

Commit

Permalink
Fix for col length
Browse files Browse the repository at this point in the history
  • Loading branch information
arcshiftsolutions committed Dec 15, 2023
1 parent bbae91f commit c460ae4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ public abstract class BaseRequest {
/**
* The Create user.
*/
@Size(max = 32)
@Size(max = 100)
public String createUser;
/**
* The Update user.
*/
@Size(max = 32)
@Size(max = 100)
public String updateUser;
/**
* The Create date.
Expand Down

0 comments on commit c460ae4

Please sign in to comment.