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.

42 lines
934 B

1 year ago
  1. package com.spring.ifs.data;
  2. /**
  3. * @ClassName: CustomerOrderData
  4. * @Description:客户订单的信息
  5. * @author: LR
  6. * @date: 2022年12月9日 下午1:59:55
  7. * @Copyright:
  8. */
  9. public class BomAlternative extends BomHeader {
  10. private String alternativeNo;// 替代编码
  11. private String alternativeDesc;// 替代描述
  12. private String state;//状态
  13. public BomAlternative() {
  14. super();
  15. }
  16. public String getAlternativeNo() {
  17. return alternativeNo;
  18. }
  19. public void setAlternativeNo(String alternativeNo) {
  20. this.alternativeNo = alternativeNo;
  21. }
  22. public String getAlternativeDesc() {
  23. return alternativeDesc;
  24. }
  25. public void setAlternativeDesc(String alternativeDesc) {
  26. this.alternativeDesc = alternativeDesc;
  27. }
  28. public String getState() {
  29. return state;
  30. }
  31. public void setState(String state) {
  32. this.state = state;
  33. }
  34. }