package com.mzl.flower.dto.response.supplier; import com.mzl.flower.base.AbstractTransDTO; import com.mzl.flower.base.annotation.DictTrans; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import java.math.BigDecimal; @Data public class StationDTO extends AbstractTransDTO{ private Long id; @ApiModelProperty("名称") private String name; @ApiModelProperty("联系人") private String contactName; @ApiModelProperty private String contactTel; @ApiModelProperty("地址") private String address; @ApiModelProperty("类型(station_type)") @DictTrans(codeType ="station_type",target = "typeStr") private String type; @ApiModelProperty("类型(station_type)") private String typeStr; @ApiModelProperty("运费") private BigDecimal freight; @ApiModelProperty("质检人员id") private String userIds; @ApiModelProperty("质检人员姓名") private String userNames; }