| | |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.ArrayList; |
| | | import java.util.Collections; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | |
| | | private List<Integer> companyIdList; |
| | | private Company company; |
| | | |
| | | @ApiModelProperty("H5用户类型 0运维人员 1商户") |
| | | private Integer h5UserType; |
| | | |
| | | @ApiModelProperty("商户ID(h5UserType=1时有值)") |
| | | private Integer customerId; |
| | | |
| | | public static final int H5_USER_OPS = 0; |
| | | public static final int H5_USER_CUSTOMER = 1; |
| | | public static final int SOURCE_H5_CUSTOMER = 10; |
| | | |
| | | //jwt登录设置 |
| | | public static LoginUserInfo from(SystemUser user, List<SystemRole> roles, List<SystemPermission> permissions,Company company,String sessionId) { |
| | | if (user == null) { |