You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

57 lines
1.1 KiB

2 years ago
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
  1. package com.spring.modules.quote.entity;
  2. import com.baomidou.mybatisplus.annotation.TableId;
  3. import com.baomidou.mybatisplus.annotation.TableName;
  4. import com.fasterxml.jackson.annotation.JsonFormat;
  5. import lombok.Data;
  6. import org.springframework.format.annotation.DateTimeFormat;
  7. import java.math.BigDecimal;
  8. import java.util.Date;
  9. @TableName("plm_quote_detail_other")
  10. @Data
  11. public class QuoteDetailOther {
  12. @TableId
  13. private Long id;
  14. private Long quoteDetailId;
  15. private Long quoteId;
  16. private String quoteNo;
  17. private String site;
  18. private String buNo;
  19. private String versionNo;
  20. private Integer quoteDetailItemNo;
  21. private Integer itemNo;
  22. private String otherDesc;
  23. private BigDecimal otherQty;
  24. private BigDecimal unitCost;
  25. private BigDecimal markup;
  26. private BigDecimal quoteOtherCost;
  27. private String remark;
  28. private String createBy;
  29. @JsonFormat(pattern = "yyyy-MM-dd")
  30. @DateTimeFormat(pattern = "yyyy-MM-dd")
  31. private Date createDate;
  32. private String updateBy;
  33. @JsonFormat(pattern = "yyyy-MM-dd")
  34. @DateTimeFormat(pattern = "yyyy-MM-dd")
  35. private Date updateDate;
  36. }