| | |
| | | package com.zy.ints.entity; |
| | | |
| | | import com.core.common.Cools;import com.baomidou.mybatisplus.annotations.TableId; |
| | | import com.baomidou.mybatisplus.annotations.TableId; |
| | | import com.baomidou.mybatisplus.enums.IdType; |
| | | import com.baomidou.mybatisplus.annotations.TableField; |
| | | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import com.baomidou.mybatisplus.annotations.TableName; |
| | | |
| | | import java.io.Serializable; |
| | | |
| | | @Data |
| | |
| | | /** |
| | | * 品号 |
| | | */ |
| | | @ApiModelProperty(value= "品号") |
| | | @ApiModelProperty(value = "品号") |
| | | @TableId(value = "prd_no", type = IdType.INPUT) |
| | | @TableField("prd_no") |
| | | private String prdNo; |
| | |
| | | /** |
| | | * 品名 |
| | | */ |
| | | @ApiModelProperty(value= "品名") |
| | | @ApiModelProperty(value = "品名") |
| | | private String name; |
| | | |
| | | /** |
| | | * 单位 |
| | | */ |
| | | @ApiModelProperty(value= "单位") |
| | | @ApiModelProperty(value = "单位") |
| | | private String ut; |
| | | |
| | | /** |
| | | * 规格 |
| | | */ |
| | | @ApiModelProperty(value= "规格") |
| | | @ApiModelProperty(value = "规格") |
| | | private String spc; |
| | | |
| | | /** |
| | | * 类型 |
| | | */ |
| | | @ApiModelProperty(value= "类型") |
| | | @ApiModelProperty(value = "类型") |
| | | private Integer type; |
| | | |
| | | /** |
| | | * 状态 |
| | | */ |
| | | @ApiModelProperty(value= "状态") |
| | | @ApiModelProperty(value = "状态") |
| | | private Integer status; |
| | | |
| | | public Prdt() {} |
| | | public Prdt() { |
| | | } |
| | | |
| | | public Prdt(String prdNo,String name,String ut,String spc,Integer type,Integer status) { |
| | | public Prdt(String prdNo, String name, String ut, String spc, Integer type, Integer status) { |
| | | this.prdNo = prdNo; |
| | | this.name = name; |
| | | this.ut = ut; |