This commit is contained in:
mashuai 2024-06-14 13:46:13 +08:00
parent e5c4ad8c55
commit d693d19f5d
2 changed files with 9 additions and 9 deletions

View File

@ -20,49 +20,49 @@ public class MaLabelBind {
* 机具ID * 机具ID
*/ */
@Excel(name = "机具ID") @Excel(name = "机具ID")
@ApiModelProperty(value = "种类id") @ApiModelProperty(value = "机具ID")
private Long maId; private Long maId;
/** /**
* 标签编号 * 标签编号
*/ */
@Excel(name = "标签编号") @Excel(name = "标签编号")
@ApiModelProperty(value = "种类id") @ApiModelProperty(value = "标签编号")
private String labelCode; private String labelCode;
/** /**
* 类型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 = "种类id") @ApiModelProperty(value = "绑定时间")
private Date bindTime; private Date bindTime;
/** /**
* 绑定人 * 绑定人
*/ */
@Excel(name = "绑定人") @Excel(name = "绑定人")
@ApiModelProperty(value = "种类id") @ApiModelProperty(value = "绑定人")
private String binder; private String binder;
/** /**
* 是否绑定(0 , 1 ) * 是否绑定(0 , 1 )
*/ */
@Excel(name = "是否绑定") @Excel(name = "是否绑定")
@ApiModelProperty(value = "种类id") @ApiModelProperty(value = "是否绑定")
private String isBind; private String isBind;
/** /**
* 标签类型(数据字典) * 标签类型(数据字典)
*/ */
@Excel(name = "标签类型(数据字典)") @Excel(name = "标签类型(数据字典)")
@ApiModelProperty(value = "种类id") @ApiModelProperty(value = "标签类型(数据字典)")
private Integer labelType; private Integer labelType;
/** /**
* 数据所属组织 * 数据所属组织
*/ */
@Excel(name = "数据所属组织") @Excel(name = "数据所属组织")
@ApiModelProperty(value = "种类id") @ApiModelProperty(value = "数据所属组织")
private String companyId; private String companyId;
/** /**
* 0已解绑 1已绑定 * 0已解绑 1已绑定

View File

@ -175,7 +175,7 @@ public class MaMachine extends BaseEntity {
/** /**
* 绑定人 * 绑定人
*/ */
@ApiModelProperty(value = "种类id") @ApiModelProperty(value = "绑定人")
private String binder; private String binder;
/** /**
* 标签编号 * 标签编号