| | |
| | | package com.panzhihua.service_community.entity; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import lombok.Data; |
| | | |
| | |
| | | public class McsProduct implements Serializable { |
| | | private static final long serialVersionUID = 415357403059379804L; |
| | | |
| | | @TableId(type = IdType.ASSIGN_ID) |
| | | private Long id; |
| | | /** |
| | | * 产品名称 |
| | |
| | | */ |
| | | private Long updatedBy; |
| | | |
| | | /** |
| | | * 状态(1.上架中 2.已下架) |
| | | */ |
| | | public interface Status { |
| | | int sjz = 1; |
| | | int yxj = 2; |
| | | } |
| | | } |