| | |
| | | **/ |
| | | public class OwnerCarDto extends PageDto implements Serializable { |
| | | |
| | | public static final String STATE_NORMAL = "1001"; |
| | | public static final String STATE_OWE = "2002"; |
| | | public static final String STATE_FINISH = "3003"; |
| | | |
| | | private String carColor; |
| | | private String carBrand; |
| | | private String carType; |
| | |
| | | businessOwnerCar.putAll(paramInJson); |
| | | businessOwnerCar.put("carId", "-1"); |
| | | OwnerCarPo ownerCarPo = BeanConvertUtil.covertBean(businessOwnerCar, OwnerCarPo.class); |
| | | ownerCarPo.setState(OwnerCarDto.STATE_NORMAL); |
| | | super.insert(dataFlowContext, ownerCarPo, BusinessTypeConstant.BUSINESS_TYPE_SAVE_OWNER_CAR); |
| | | } |
| | | |