KdYdOrderDetail.java 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. package com.malk.huagao.entity;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableId;
  4. import com.baomidou.mybatisplus.annotation.TableName;
  5. import java.io.Serializable;
  6. import java.math.BigDecimal;
  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-15
  17. */
  18. @Getter
  19. @Setter
  20. @TableName("KD_YD_ORDER_DETAIL")
  21. public class KdYdOrderDetail implements Serializable {
  22. private static final long serialVersionUID = 1L;
  23. @TableId(value = "id", type = IdType.AUTO)
  24. private Long id;
  25. private Long orderId;
  26. private String wlbm;
  27. private String wlmc;
  28. private String ggxh;
  29. private String xsdw;
  30. private Integer xssl;
  31. private String ssxl;
  32. private BigDecimal dj;
  33. private BigDecimal hsdj;
  34. private String sfzp;
  35. private String bz;
  36. private Integer sl;
  37. private BigDecimal se;
  38. private BigDecimal je;
  39. private BigDecimal jshj;
  40. private BigDecimal jj;
  41. private BigDecimal cxzkje;
  42. private BigDecimal zkl;
  43. private BigDecimal zke;
  44. private LocalDateTime yhrq;
  45. private BigDecimal xsjzj;
  46. private String smzs;
  47. private Integer detailId;
  48. private LocalDateTime createTime;
  49. private LocalDateTime updateTime;
  50. // private String forminstid;
  51. private String syncStatus;
  52. private String operationType;
  53. }