Skip to content

Commit

Permalink
update name filed and update type string -> integer
Browse files Browse the repository at this point in the history
  • Loading branch information
Jzow committed Sep 24, 2023
1 parent 44186dd commit 26700ee
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public class SysRole implements Serializable {
/**
* 名称
*/
private String name;
private String roleName;

/**
* 类型
Expand All @@ -56,7 +56,7 @@ public class SysRole implements Serializable {
/**
* 价格屏蔽 1-屏蔽采购价 2-屏蔽零售价 3-屏蔽销售价
*/
private String priceLimit;
private Integer priceLimit;

/**
* 描述
Expand All @@ -66,7 +66,7 @@ public class SysRole implements Serializable {
/**
* 状态(0-启用,1-停用)
*/
private Boolean status;
private Integer status;

/**
* 创建时间
Expand All @@ -91,7 +91,7 @@ public class SysRole implements Serializable {
/**
* 删除标记,0未删除,1删除
*/
private Boolean deleteFlag;
private Integer deleteFlag;


}

0 comments on commit 26700ee

Please sign in to comment.