package cn.iocoder.yudao.module.mdm.controller.admin.item.vo;
|
|
import cn.iocoder.yudao.framework.common.pojo.PageParam;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import lombok.ToString;
|
|
import java.time.LocalDateTime;
|
|
@Schema(description = "管理后台 - MDM 物料分页 Request VO")
|
@Data
|
@EqualsAndHashCode(callSuper = true)
|
@ToString(callSuper = true)
|
public class MdmItemPageReqVO extends PageParam {
|
|
@Schema(description = "物料编码", example = "ITEM001")
|
private String code;
|
|
@Schema(description = "物料名称", example = "螺丝")
|
private String name;
|
|
@Schema(description = "物料条码", example = "12345678")
|
private String barCode;
|
|
@Schema(description = "物料分类编号", example = "1")
|
private Long categoryId;
|
|
@Schema(description = "物料类型", example = "1")
|
private Integer itemType;
|
|
@Schema(description = "状态", example = "0")
|
private Integer status;
|
|
@Schema(description = "品牌编号", example = "1")
|
private Long brandId;
|
|
@Schema(description = "创建时间")
|
private LocalDateTime[] createTime;
|
|
}
|