UserUpModel.java 502 B

1234567891011121314151617181920212223242526
  1. package jnpf.permission.model.user.mod;
  2. import jnpf.permission.entity.UserEntity;
  3. import lombok.Data;
  4. /**
  5. * @author JNPF开发平台组
  6. * @version V3.1.0
  7. * @copyright 引迈信息技术有限公司(https://www.jnpfsoft.com)
  8. * @date 2021-11-23
  9. */
  10. @Data
  11. public class UserUpModel {
  12. private Integer num;
  13. private UserEntity entity;
  14. public UserUpModel() {
  15. }
  16. public UserUpModel(Integer num, UserEntity entity) {
  17. this.num = num;
  18. this.entity = entity;
  19. }
  20. }