字段类型提交

This commit is contained in:
liang.chao 2024-09-19 16:03:06 +08:00
parent f7bc5de8a2
commit 15e9784617
2 changed files with 6 additions and 6 deletions

View File

@ -58,7 +58,7 @@ public class PurchaseCheckInfo extends BaseEntity
/** 采购员 */ /** 采购员 */
@ApiModelProperty(value = "采购员") @ApiModelProperty(value = "采购员")
private Long purchaser; private Integer purchaser;
/** 采购机具设备名称 */ /** 采购机具设备名称 */
@ApiModelProperty(value = "采购机具设备") @ApiModelProperty(value = "采购机具设备")
@ -178,12 +178,12 @@ public class PurchaseCheckInfo extends BaseEntity
{ {
return arrivalTime; return arrivalTime;
} }
public void setPurchaser(Long purchaser) public void setPurchaser(Integer purchaser)
{ {
this.purchaser = purchaser; this.purchaser = purchaser;
} }
public Long getPurchaser() public Integer getPurchaser()
{ {
return purchaser; return purchaser;
} }

View File

@ -49,7 +49,7 @@ public class PurchasePartInfo extends BaseEntity
/** 采购员 */ /** 采购员 */
@ApiModelProperty(value = "采购员") @ApiModelProperty(value = "采购员")
private Long purchaser; private Integer purchaser;
/** 采购机具设备名称 */ /** 采购机具设备名称 */
@ApiModelProperty(value = "采购机具设备") @ApiModelProperty(value = "采购机具设备")
@ -185,12 +185,12 @@ public class PurchasePartInfo extends BaseEntity
{ {
return arrivalTime; return arrivalTime;
} }
public void setPurchaser(Long purchaser) public void setPurchaser(Integer purchaser)
{ {
this.purchaser = purchaser; this.purchaser = purchaser;
} }
public Long getPurchaser() public Integer getPurchaser()
{ {
return purchaser; return purchaser;
} }