| | |
| | | import com.baomidou.mybatisplus.annotations.TableName; |
| | | import com.baomidou.mybatisplus.enums.IdType; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | |
| | | * @since 2020-06-09 |
| | | */ |
| | | @TableName("t_activity_generalization") |
| | | @Data |
| | | public class TActivityGeneralization extends Model<TActivityGeneralization> { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Integer id; |
| | | private Integer effective; |
| | | |
| | | @ApiModelProperty(value = "活动名称") |
| | | @TableField(value = "activityName") |
| | |
| | | @ApiModelProperty(value = "是否删除 1=否 2=是") |
| | | @TableField(value = "isDelete") |
| | | private Integer isDelete; |
| | | private Integer state; |
| | | |
| | | public Integer getId() { |
| | | return id; |