KdYdCustomer.java 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. package com.malk.huagao.entity;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableField;
  4. import com.baomidou.mybatisplus.annotation.TableId;
  5. import com.baomidou.mybatisplus.annotation.TableName;
  6. import java.io.Serializable;
  7. import java.time.LocalDateTime;
  8. import lombok.Getter;
  9. import lombok.Setter;
  10. /**
  11. * <p>
  12. *
  13. * </p>
  14. *
  15. * @author LQY
  16. * @since 2025-10-09
  17. */
  18. @Getter
  19. @Setter
  20. @TableName("KD_YD_CUSTOMER")
  21. public class KdYdCustomer implements Serializable {
  22. private static final long serialVersionUID = 1L;
  23. @TableId(value = "id", type = IdType.AUTO)
  24. private Long id;
  25. private String khmc;
  26. private String khbm;
  27. private String xssx;
  28. private String khxypj;
  29. private String khsx;
  30. private String jxr;
  31. private String khlb;
  32. private String khfz;
  33. private String fptt;
  34. private String nsdjh;
  35. private String khyh;
  36. private String yhzh;
  37. private String kplx;
  38. private String kplxdh;
  39. private String kptxdz;
  40. private String tyshxydm;
  41. private String khtjr;
  42. private String sktj;
  43. private String xsy;
  44. private String jsbb;
  45. private String mrsl;
  46. private String sfl;
  47. private String khyxj;
  48. private String qyxygl;
  49. private LocalDateTime createTime;
  50. private LocalDateTime updateTime;
  51. @TableField("formInstId")
  52. private String formInstId;
  53. private String uuid;
  54. private String tjruuid;
  55. private String syncStatus;
  56. private String operationType;
  57. }