UserDistribute.java 499 B

123456789101112131415161718192021222324252627282930
  1. package com.cyksj.model.entity;
  2. import com.baomidou.mybatisplus.annotation.TableLogic;
  3. import lombok.Getter;
  4. import lombok.Setter;
  5. /*
  6. *项目名: netflix
  7. *文件名: UserDistribute
  8. *创建者: JavaZou
  9. *创建时间:2022/11/14 12:10
  10. */
  11. @Getter
  12. @Setter
  13. public class UserDistribute extends BaseEntity{
  14. private Long userId;
  15. /**
  16. * 备注
  17. */
  18. private String remark;
  19. /**
  20. * 商务人员id
  21. */
  22. private Long businessId;
  23. @TableLogic(value = "1", delval = "0")
  24. private Boolean deleted;
  25. }