CustomerEntity.java 940 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. package jnpf.entity;
  2. import com.baomidou.mybatisplus.annotation.TableField;
  3. import com.baomidou.mybatisplus.annotation.TableName;
  4. import jnpf.base.entity.SuperEntity;
  5. import lombok.Data;
  6. /**
  7. * 客户信息
  8. *
  9. * @版本: V3.1.0
  10. * @版权: 引迈信息技术有限公司(https://www.jnpfsoft.com)
  11. * @作者: JNPF开发平台组
  12. * @日期: 2021-07-10 14:09:05
  13. */
  14. @Data
  15. @TableName("ext_customer")
  16. public class CustomerEntity extends SuperEntity<String> {
  17. /**
  18. * 编码
  19. */
  20. @TableField("F_EN_CODE")
  21. private String code;
  22. /**
  23. * 客户名称
  24. */
  25. @TableField("F_CUSTOMER_NAME")
  26. private String customerName;
  27. /**
  28. * 地址
  29. */
  30. @TableField("F_ADDRESS")
  31. private String address;
  32. /**
  33. * 姓名
  34. */
  35. @TableField("F_FULL_NAME")
  36. private String name;
  37. /**
  38. * 联系方式
  39. */
  40. @TableField("F_CONTACT_TEL")
  41. private String contactTel;
  42. }