ShipmentApiService.java 435 Bytes
package com.huaheng.api.general.service;

import com.huaheng.api.general.domain.ShipmentDomain;
import com.huaheng.framework.web.domain.AjaxResult;
import org.springframework.stereotype.Component;
import org.springframework.transaction.annotation.Transactional;

@Component
@Transactional
public class ShipmentApiService {

    public AjaxResult shipment(ShipmentDomain shipmentDomain){

        return AjaxResult.success("");
    }
}