| package com.mzl.flower.entity.supplier; | 
|   | 
|   | 
| import com.baomidou.mybatisplus.annotation.TableName; | 
| import com.mzl.flower.base.BaseAutoEntity; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| import java.time.LocalDateTime; | 
|   | 
| @Data | 
| @TableName("t_supplier_type") | 
| public class SupplierType extends BaseAutoEntity { | 
|   | 
|     @ApiModelProperty("名称") | 
|     private String name; | 
|   | 
|     @ApiModelProperty("描述") | 
|     private String description; | 
|   | 
| } |