HbBaseInfo.java 380 B

12345678910111213141516171819
  1. package com.ydtech.modules.ins.model;
  2. /**
  3. * @author qinfenglong
  4. * @version 1.0.0
  5. * @description HbBaseInfo
  6. * @since 2020/11/29 18:12
  7. */
  8. public class HbBaseInfo {
  9. private String customerType;
  10. public String getCustomerType() {
  11. return customerType;
  12. }
  13. public void setCustomerType(String customerType) {
  14. this.customerType = customerType;
  15. }
  16. }