| | |
| | | package com.gkhy.exam.system.domain; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | |
| | | import java.io.Serializable; |
| | | import java.time.LocalDateTime; |
| | | import java.util.List; |
| | | |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Getter; |
| | |
| | | |
| | | import javax.validation.constraints.NotEmpty; |
| | | import javax.validation.constraints.NotNull; |
| | | import java.io.Serializable; |
| | | import java.time.LocalDateTime; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | @NotNull(message = "公司id不能为空") |
| | | private Long companyId; |
| | | |
| | | @ApiModelProperty(value = "物料id",required = true) |
| | | @TableField("material_id") |
| | | @NotNull(message = "物料id不能为空") |
| | | private Long materialId; |
| | | |
| | | @ApiModelProperty("库存量") |
| | | @TableField("inventory") |
| | | private Integer inventory; |
| | | |
| | | @ApiModelProperty(value = "记录名称",required = true) |
| | | @TableField("record_name") |
| | | @NotNull(message = "记录名称不能为空") |