import org.springframework.beans.BeanUtils;
        ContractUpdateVO vo = new ContractUpdateVO();
        vo.setId("123").setBranchCode("2").setBranchId("3").setBranchName("4");
        Contract contract = new Contract();
        BeanUtils.copyProperties(vo, contract);
        System.out.println(contract);

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-02-07
  • 2022-12-23
  • 2021-09-18
  • 2021-09-18
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-08-19
  • 2021-07-01
  • 2022-02-07
  • 2022-12-23
相关资源
相似解决方案