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.

26 lines
666 B

2 weeks ago
  1. package com.xujie.modules.srm.data;
  2. import com.xujie.modules.srm.entity.SrmSupplier;
  3. import lombok.Data;
  4. import org.apache.ibatis.type.Alias;
  5. @Data
  6. @Alias("SrmSupplierData")
  7. public class SrmSupplierData extends SrmSupplier {
  8. // 供应商分组描述
  9. private String groupDesc;
  10. public String getGroupDesc() {
  11. return this.groupDesc;
  12. }
  13. public void setGroupDesc(String groupDesc) {
  14. this.groupDesc = groupDesc;
  15. }
  16. private String groupDocType;
  17. public String getGroupDocType() {
  18. return this.groupDocType;
  19. }
  20. public void setGroupDocType(String groupDocType) {
  21. this.groupDocType = groupDocType;
  22. }
  23. }