便携式设备软件信息调整

This commit is contained in:
xy
2024-09-23 20:32:03 +08:00
parent 65afb4eddc
commit 509712b5b5
3 changed files with 4 additions and 3 deletions

View File

@@ -48,8 +48,8 @@ public class CsDevModelPageVO extends BaseEntity {
* 版本日期
*/
@ApiModelProperty(value = "版本日期")
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
@DateTimeFormat(pattern="yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
private Date versionDate;
/**

View File

@@ -50,7 +50,7 @@ public class CsSoftInfoController extends BaseController {
@OperateInfo(info = LogEnum.BUSINESS_COMMON)
@PostMapping("/saveSoftInfo")
@ApiOperation("保存程序软件信息")
@ApiImplicitParam(name = "id", value = "id", required = true)
@ApiImplicitParam(name = "po", value = "po", required = true)
public HttpResult<String> saveSoftInfo(@RequestBody CsSoftInfoPO po){
String methodDescribe = getMethodDescribe("saveSoftInfo");
csSoftInfoService.save(po);

View File

@@ -116,6 +116,7 @@ public class CsLedgerServiceImpl extends ServiceImpl<CsLedgerMapper, CsLedger> i
for(CsLedgerVO cs : c.getChildren()){
cs.setPid(c.getId());
cs.setLevel(3);
cs.setComFlag(csEquipmentDeliveryPO.getRunStatus());
}
}
portable.setChildren(portables);