package com.gkhy.exam.system.domain; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Getter; import lombok.Setter; import java.io.Serializable; import java.math.BigDecimal; @Getter @Setter @TableName("purchase_apply_plan") @ApiModel(value = "purchaseApplyPlan",description = "采购申请") public class PurchaseApplyPlan implements Serializable { @ApiModelProperty("主键") @TableId(value = "id", type = IdType.AUTO) private Integer id; @ApiModelProperty(value = "申请id") @TableField("apply_id") private Integer applyId; @ApiModelProperty(value = "品名") @TableField("name") private String name; @ApiModelProperty(value = "型号规格") @TableField("model") private String model; @ApiModelProperty(value = "建议供应商") @TableField("supplier") private String supplier; @ApiModelProperty(value = "数量") @TableField("amount") private Integer amount; @ApiModelProperty(value = "预计单价") @TableField("money") private BigDecimal money; @ApiModelProperty(value = "分类") @TableField("type") private String type; }