Administrator
1 days ago fe70ca5db711b458714bfbe4a6eda6cf7d8a0421
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package cc.mrbird.febs.mall.entity;
 
import cc.mrbird.febs.common.entity.BaseEntity;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
@Data
@TableName("clothes_type_size")
public class ClothesTypeSize extends BaseEntity {
    /**
     *
     `type_id` bigint(20) DEFAULT NULL,
     `size_id` bigint(20) DEFAULT NULL,
     */
    private Long typeId;
    private Long sizeId;
}