日更新
This commit is contained in:
parent
0f29e252bc
commit
364a09f8ed
|
|
@ -22,135 +22,186 @@ import com.bonus.common.core.web.domain.BaseEntity;
|
||||||
|
|
||||||
@Data
|
@Data
|
||||||
@ToString
|
@ToString
|
||||||
public class Machine extends BaseEntity
|
public class Machine extends BaseEntity {
|
||||||
{
|
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/** 主键id */
|
/**
|
||||||
|
* 主键id
|
||||||
|
*/
|
||||||
private Long id;
|
private Long id;
|
||||||
|
|
||||||
/** 机具ID */
|
/**
|
||||||
|
* 机具ID
|
||||||
|
*/
|
||||||
private Long maId;
|
private Long maId;
|
||||||
|
|
||||||
/** 类型ID */
|
/**
|
||||||
|
* 类型ID
|
||||||
|
*/
|
||||||
@Excel(name = "类型ID")
|
@Excel(name = "类型ID")
|
||||||
@ApiModelProperty(value = "类型ID")
|
@ApiModelProperty(value = "类型ID")
|
||||||
private Long typeId;
|
private Long typeId;
|
||||||
|
|
||||||
/** 机具编号 */
|
/**
|
||||||
|
* 机具编号
|
||||||
|
*/
|
||||||
@Excel(name = "机具编号")
|
@Excel(name = "机具编号")
|
||||||
@ApiModelProperty(value = "机具编号")
|
@ApiModelProperty(value = "机具编号")
|
||||||
private String maCode;
|
private String maCode;
|
||||||
|
|
||||||
/** 原编号 */
|
/**
|
||||||
|
* 原编号
|
||||||
|
*/
|
||||||
@Excel(name = "原编号")
|
@Excel(name = "原编号")
|
||||||
@ApiModelProperty(value = "原编号")
|
@ApiModelProperty(value = "原编号")
|
||||||
private String preCode;
|
private String preCode;
|
||||||
|
|
||||||
/** 机具状态(数据字典) */
|
/**
|
||||||
|
* 机具状态(数据字典)
|
||||||
|
*/
|
||||||
@Excel(name = "机具状态")
|
@Excel(name = "机具状态")
|
||||||
@ApiModelProperty(value = "机具状态")
|
@ApiModelProperty(value = "机具状态")
|
||||||
private String maStatus;
|
private String maStatus;
|
||||||
|
|
||||||
/** 二维码 */
|
/**
|
||||||
|
* 二维码
|
||||||
|
*/
|
||||||
@Excel(name = "二维码")
|
@Excel(name = "二维码")
|
||||||
@ApiModelProperty(value = "二维码")
|
@ApiModelProperty(value = "二维码")
|
||||||
private String qrCode;
|
private String qrCode;
|
||||||
|
|
||||||
/** 购置价格 */
|
/**
|
||||||
|
* 购置价格
|
||||||
|
*/
|
||||||
@Excel(name = "购置价格")
|
@Excel(name = "购置价格")
|
||||||
@ApiModelProperty(value = "购置价格")
|
@ApiModelProperty(value = "购置价格")
|
||||||
private BigDecimal buyPrice;
|
private BigDecimal buyPrice;
|
||||||
|
|
||||||
/** 厂家 */
|
/**
|
||||||
|
* 厂家
|
||||||
|
*/
|
||||||
@Excel(name = "厂家")
|
@Excel(name = "厂家")
|
||||||
@ApiModelProperty(value = "厂家")
|
@ApiModelProperty(value = "厂家")
|
||||||
private String maVender;
|
private String maVender;
|
||||||
|
|
||||||
/** 出厂日期 */
|
/**
|
||||||
|
* 出厂日期
|
||||||
|
*/
|
||||||
@ApiModelProperty(value = "出厂日期")
|
@ApiModelProperty(value = "出厂日期")
|
||||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||||
@Excel(name = "出厂日期")
|
@Excel(name = "出厂日期")
|
||||||
private String outFacTime;
|
private String outFacTime;
|
||||||
|
|
||||||
/** 出厂编号 */
|
/**
|
||||||
|
* 出厂编号
|
||||||
|
*/
|
||||||
@Excel(name = "出厂编号")
|
@Excel(name = "出厂编号")
|
||||||
@ApiModelProperty(value = "出厂编号")
|
@ApiModelProperty(value = "出厂编号")
|
||||||
private String outFacCode;
|
private String outFacCode;
|
||||||
|
|
||||||
/** 固定资产编号 */
|
/**
|
||||||
|
* 固定资产编号
|
||||||
|
*/
|
||||||
@Excel(name = "固定资产编号")
|
@Excel(name = "固定资产编号")
|
||||||
@ApiModelProperty(value = "固定资产编号")
|
@ApiModelProperty(value = "固定资产编号")
|
||||||
private String assetsCode;
|
private String assetsCode;
|
||||||
|
|
||||||
/** 本次检验人 */
|
/**
|
||||||
|
* 本次检验人
|
||||||
|
*/
|
||||||
@Excel(name = "本次检验人")
|
@Excel(name = "本次检验人")
|
||||||
@ApiModelProperty(value = "本次检验人")
|
@ApiModelProperty(value = "本次检验人")
|
||||||
private String checkMan;
|
private String checkMan;
|
||||||
|
|
||||||
/** 本次检验日期 */
|
/**
|
||||||
|
* 本次检验日期
|
||||||
|
*/
|
||||||
@ApiModelProperty(value = "本次检验日期")
|
@ApiModelProperty(value = "本次检验日期")
|
||||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||||
@Excel(name = "本次检验日期", width = 30, dateFormat = "yyyy-MM-dd")
|
@Excel(name = "本次检验日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||||
private Date thisCheckTime;
|
private Date thisCheckTime;
|
||||||
|
|
||||||
/** 下次检验日期 */
|
/**
|
||||||
|
* 下次检验日期
|
||||||
|
*/
|
||||||
@ApiModelProperty(value = "下次检验日期")
|
@ApiModelProperty(value = "下次检验日期")
|
||||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||||
@Excel(name = "下次检验日期", width = 30, dateFormat = "yyyy-MM-dd")
|
@Excel(name = "下次检验日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||||
private Date nextCheckTime;
|
private Date nextCheckTime;
|
||||||
|
|
||||||
/** gps编号 */
|
/**
|
||||||
|
* gps编号
|
||||||
|
*/
|
||||||
@Excel(name = "gps编号")
|
@Excel(name = "gps编号")
|
||||||
@ApiModelProperty(value = "gps编号")
|
@ApiModelProperty(value = "gps编号")
|
||||||
private String gpsCode;
|
private String gpsCode;
|
||||||
|
|
||||||
/** rfid编号 */
|
/**
|
||||||
|
* rfid编号
|
||||||
|
*/
|
||||||
@Excel(name = "rfid编号")
|
@Excel(name = "rfid编号")
|
||||||
@ApiModelProperty(value = "rfid编号")
|
@ApiModelProperty(value = "rfid编号")
|
||||||
private String rfidCode;
|
private String rfidCode;
|
||||||
|
|
||||||
/** erp编号 */
|
/**
|
||||||
|
* erp编号
|
||||||
|
*/
|
||||||
@Excel(name = "erp编号")
|
@Excel(name = "erp编号")
|
||||||
@ApiModelProperty(value = "erp编号")
|
@ApiModelProperty(value = "erp编号")
|
||||||
private String erpCode;
|
private String erpCode;
|
||||||
|
|
||||||
/** 调拨编号 */
|
/**
|
||||||
|
* 调拨编号
|
||||||
|
*/
|
||||||
@Excel(name = "调拨编号")
|
@Excel(name = "调拨编号")
|
||||||
@ApiModelProperty(value = "调拨编号")
|
@ApiModelProperty(value = "调拨编号")
|
||||||
private String transferCode;
|
private String transferCode;
|
||||||
|
|
||||||
/** 出入库次数 */
|
/**
|
||||||
|
* 出入库次数
|
||||||
|
*/
|
||||||
@Excel(name = "出入库次数")
|
@Excel(name = "出入库次数")
|
||||||
@ApiModelProperty(value = "出入库次数")
|
@ApiModelProperty(value = "出入库次数")
|
||||||
private Long inOutNum;
|
private Long inOutNum;
|
||||||
|
|
||||||
/** 购置批次 */
|
/**
|
||||||
|
* 购置批次
|
||||||
|
*/
|
||||||
@Excel(name = "购置批次")
|
@Excel(name = "购置批次")
|
||||||
@ApiModelProperty(value = "购置批次")
|
@ApiModelProperty(value = "购置批次")
|
||||||
private String buyTask;
|
private String buyTask;
|
||||||
|
|
||||||
/** 所在仓库 */
|
/**
|
||||||
|
* 所在仓库
|
||||||
|
*/
|
||||||
@Excel(name = "所在仓库")
|
@Excel(name = "所在仓库")
|
||||||
@ApiModelProperty(value = "所在仓库")
|
@ApiModelProperty(value = "所在仓库")
|
||||||
private String ownHouse;
|
private String ownHouse;
|
||||||
|
|
||||||
/** 数据所属组织 */
|
/**
|
||||||
|
* 数据所属组织
|
||||||
|
*/
|
||||||
@Excel(name = "数据所属组织")
|
@Excel(name = "数据所属组织")
|
||||||
@ApiModelProperty(value = "数据所属组织")
|
@ApiModelProperty(value = "数据所属组织")
|
||||||
private String companyId;
|
private String companyId;
|
||||||
|
|
||||||
/** 检验人员 */
|
/**
|
||||||
|
* 检验人员
|
||||||
|
*/
|
||||||
@Excel(name = "检验人员")
|
@Excel(name = "检验人员")
|
||||||
@ApiModelProperty(value = "检验人员")
|
@ApiModelProperty(value = "检验人员")
|
||||||
private String inspectMan;
|
private String inspectMan;
|
||||||
|
|
||||||
/** 检验结论 */
|
/**
|
||||||
|
* 检验结论
|
||||||
|
*/
|
||||||
@Excel(name = "检验结论")
|
@Excel(name = "检验结论")
|
||||||
@ApiModelProperty(value = "检验结论")
|
@ApiModelProperty(value = "检验结论")
|
||||||
private String inspectStatus;
|
private String inspectStatus;
|
||||||
|
|
||||||
/** 联系电话 */
|
/**
|
||||||
|
* 联系电话
|
||||||
|
*/
|
||||||
@Excel(name = "联系电话")
|
@Excel(name = "联系电话")
|
||||||
@ApiModelProperty(value = "联系电话")
|
@ApiModelProperty(value = "联系电话")
|
||||||
private String phone;
|
private String phone;
|
||||||
|
|
@ -263,4 +314,6 @@ public class Machine extends BaseEntity
|
||||||
* i8工程id集合
|
* i8工程id集合
|
||||||
*/
|
*/
|
||||||
private List<String> projectIdList;
|
private List<String> projectIdList;
|
||||||
|
|
||||||
|
private String supplierId;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue