ClientDTO.java 604 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. package cn.cslg.pas.common.dto;
  2. import com.baomidou.mybatisplus.annotation.TableField;
  3. import com.baomidou.mybatisplus.annotation.TableName;
  4. import lombok.Data;
  5. /**
  6. * <p>
  7. * 委托方表
  8. * </p>
  9. *
  10. * @author 王岩
  11. * @since 2022-02-17
  12. */
  13. @Data
  14. public class ClientDTO {
  15. private Integer id;
  16. /**
  17. * 委托方名称
  18. */
  19. private String name;
  20. /**
  21. * 客户负责人
  22. */
  23. private Integer personnelId;
  24. private Integer tenantId;
  25. /**
  26. * 备注
  27. */
  28. private String remark;
  29. @TableField(exist = false)
  30. private String personnelName;
  31. }