Client.java 677 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. package cn.cslg.pas.common.model.cronModel;
  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 Client {
  15. private Integer id;
  16. /**
  17. * 客户名称
  18. */
  19. private String name;
  20. /**
  21. * 客户负责人
  22. */
  23. private Integer personnelId;
  24. /**
  25. * 1是开启,0是关闭
  26. */
  27. private Integer status;
  28. /**
  29. * 租户Id
  30. */
  31. private Integer tenantId;
  32. /**
  33. * 备注
  34. */
  35. private String remark;
  36. private String personnelName;
  37. }