| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- package com.ktg.iscs.domain;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import com.ktg.common.annotation.Excel;
- import com.ktg.common.core.domain.model.BaseBean;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- import java.util.Date;
- /**
- * 物资对象 is_materials
- *
- * @author cgj
- * @date 2024-11-08
- */
- @EqualsAndHashCode(callSuper = true)
- @Data
- public class IsMaterials extends BaseBean
- {
- private static final long serialVersionUID = 1L;
- @ApiModelProperty(value = "物资ID")
- @TableId(type = IdType.AUTO)
- private Long materialsId;
- @ApiModelProperty(value = "物资编号")
- @Excel(name = "物资编号")
- private String materialsCode;
- @ApiModelProperty(value = "物资名称")
- @Excel(name = "物资名称")
- private String materialsName;
- @ApiModelProperty(value = "物资类型ID")
- private Long materialsTypeId;
- @ApiModelProperty(value = "区域ID")
- @Excel(name = "区域ID")
- private Long workareaId;
- @ApiModelProperty(value = "物资柜ID")
- @Excel(name = "物资柜ID")
- private Long materialsCabinetId;
- @ApiModelProperty(value = "可用寿命")
- @Excel(name = "可用寿命")
- private String serviceLife;
- @ApiModelProperty(value = "剩余寿命")
- @Excel(name = "剩余寿命")
- private String availableLife;
- @ApiModelProperty(value = "可用次数")
- @Excel(name = "可用次数")
- private Long serviceTimes;
- @ApiModelProperty(value = "剩余次数")
- @Excel(name = "剩余次数")
- private Long availableTimes;
- @ApiModelProperty(value = "启用时间")
- @JsonFormat(timezone="GMT+8", pattern = "yyyy-MM-dd")
- @Excel(name = "启用时间", width = 30, dateFormat = "yyyy-MM-dd")
- private Date startTime;
- @ApiModelProperty(value = "删除标志(0代表存在 2代表删除)")
- private String delFlag;
- @ApiModelProperty(value = "状态(0-借出 1-柜中)")
- private String loanState;
- }
|