嗨森逛服务
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.
hai-server/hai-service/src/main/java/com/hai/model/TyAgentOilStationModel.java

26 lines
626 B

package com.hai.model;
import lombok.Data;
@Data
public class TyAgentOilStationModel {
private Long storeId;
private Long regionId;
private String regionName;
private String storeLogo;
private String storeKey;
private String storeName;
private String address;
private Long tyAgentOilStationId;
private Long organizationId;
private String organizationName;
private Long tyAgentId;
private String tyAgentName;
private Long tySalesmanId;
private Integer sourceType;
private String tySalesmanName;
private Long oilStationId;
private String oilStationName;
}