| 12345678910111213141516171819 |
- package com.ydtech.modules.ins.model;
- /**
- * @author qinfenglong
- * @version 1.0.0
- * @description HbBaseInfo
- * @since 2020/11/29 18:12
- */
- public class HbBaseInfo {
- private String customerType;
- public String getCustomerType() {
- return customerType;
- }
- public void setCustomerType(String customerType) {
- this.customerType = customerType;
- }
- }
|