package com.szwl.model.entity; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import java.io.Serializable; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import lombok.EqualsAndHashCode; /** *
* *
* * @author wuhs * @since 2022-04-23 */ @Data @EqualsAndHashCode(callSuper = false) @ApiModel(value="TEquipmentDesc对象", description="") public class TEquipmentDesc implements Serializable { private static final long serialVersionUID = 1L; @TableId(value = "equipment_id", type = IdType.ASSIGN_ID) private Long equipmentId; @ApiModelProperty(value = "花型数量;") private String flowers; }