| package cc.mrbird.febs.mall.entity; | 
|   | 
| import cc.mrbird.febs.common.entity.BaseEntity; | 
| import com.baomidou.mybatisplus.annotation.TableField; | 
| import com.baomidou.mybatisplus.annotation.TableName; | 
| import lombok.Data; | 
|   | 
| /** | 
|  * @author wzy | 
|  * @date 2021-09-22 | 
|  **/ | 
| @Data | 
| @TableName("mall_express_info") | 
| public class MallExpressInfo extends BaseEntity { | 
|   | 
|     private Long orderId; | 
|   | 
|     private Long memberId; | 
|   | 
|     private String expressNo; | 
|   | 
|     private String expressCom; | 
|   | 
|     private String expressCode; | 
| } |