业务单和执行单开发
This commit is contained in:
+72
@@ -0,0 +1,72 @@
|
|||||||
|
package com.mhd.oms.application.service.businessDocumentAddressMulti;
|
||||||
|
|
||||||
|
import com.mhd.oms.domain.businessDocumentAddressMulti.repository.po.BusinessDocumentAddressMultiPO;
|
||||||
|
import com.mhd.oms.domain.businessDocumentAddressMulti.repository.todo.BusinessDocumentAddressMultiDO;
|
||||||
|
import com.mhd.oms.domain.businessDocumentAddressMulti.service.BusinessDocumentAddressMultiDomainService;
|
||||||
|
import com.mhd.common.security.utils.SecurityUtils;
|
||||||
|
import com.mhd.system.api.model.LoginUser;
|
||||||
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
import java.util.List;
|
||||||
|
/**
|
||||||
|
* 【请填写功能名称】ApplicationService
|
||||||
|
*
|
||||||
|
* @author gen
|
||||||
|
* @date 2026-01-26
|
||||||
|
*/
|
||||||
|
@Service
|
||||||
|
@Slf4j
|
||||||
|
public class BusinessDocumentAddressMultiApplicationService {
|
||||||
|
@Autowired
|
||||||
|
private BusinessDocumentAddressMultiDomainService businessDocumentAddressMultiDomainService;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 分页查询【请填写功能名称】列表
|
||||||
|
*/
|
||||||
|
|
||||||
|
public List<BusinessDocumentAddressMultiPO> queryList(BusinessDocumentAddressMultiDO businessDocumentAddressMultiDO) {
|
||||||
|
LoginUser loginUser = SecurityUtils.getLoginUser();
|
||||||
|
if (loginUser != null){
|
||||||
|
Long topOrganizationId = loginUser.getUserPo().getTopOrganizationId();
|
||||||
|
if (topOrganizationId != null && topOrganizationId != 1){
|
||||||
|
businessDocumentAddressMultiDO.setTopOrganizationId(loginUser.getUserPo().getTopOrganizationId());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return businessDocumentAddressMultiDomainService.queryList(businessDocumentAddressMultiDO);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 新增【请填写功能名称】
|
||||||
|
*/
|
||||||
|
public Boolean insert(BusinessDocumentAddressMultiDO businessDocumentAddressMultiDO) {
|
||||||
|
|
||||||
|
return businessDocumentAddressMultiDomainService.insert(businessDocumentAddressMultiDO);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改【请填写功能名称】
|
||||||
|
*/
|
||||||
|
public Boolean update(BusinessDocumentAddressMultiDO businessDocumentAddressMultiDO) {
|
||||||
|
return businessDocumentAddressMultiDomainService.update(businessDocumentAddressMultiDO);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 批量删除【请填写功能名称】
|
||||||
|
*/
|
||||||
|
public boolean delete(Long[] ids) {
|
||||||
|
return businessDocumentAddressMultiDomainService.delete(ids);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取【请填写功能名称】详细信息
|
||||||
|
*/
|
||||||
|
public BusinessDocumentAddressMultiPO getInfo(Long id)
|
||||||
|
{
|
||||||
|
return businessDocumentAddressMultiDomainService.getInfo(id);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
+72
@@ -0,0 +1,72 @@
|
|||||||
|
package com.mhd.oms.application.service.businessDocumentCargoMulti;
|
||||||
|
|
||||||
|
import com.mhd.oms.domain.businessDocumentCargoMulti.repository.po.BusinessDocumentCargoMultiPO;
|
||||||
|
import com.mhd.oms.domain.businessDocumentCargoMulti.repository.todo.BusinessDocumentCargoMultiDO;
|
||||||
|
import com.mhd.oms.domain.businessDocumentCargoMulti.service.BusinessDocumentCargoMultiDomainService;
|
||||||
|
import com.mhd.common.security.utils.SecurityUtils;
|
||||||
|
import com.mhd.system.api.model.LoginUser;
|
||||||
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
import java.util.List;
|
||||||
|
/**
|
||||||
|
* 【请填写功能名称】ApplicationService
|
||||||
|
*
|
||||||
|
* @author gen
|
||||||
|
* @date 2026-01-26
|
||||||
|
*/
|
||||||
|
@Service
|
||||||
|
@Slf4j
|
||||||
|
public class BusinessDocumentCargoMultiApplicationService {
|
||||||
|
@Autowired
|
||||||
|
private BusinessDocumentCargoMultiDomainService businessDocumentCargoMultiDomainService;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 分页查询【请填写功能名称】列表
|
||||||
|
*/
|
||||||
|
|
||||||
|
public List<BusinessDocumentCargoMultiPO> queryList(BusinessDocumentCargoMultiDO businessDocumentCargoMultiDO) {
|
||||||
|
LoginUser loginUser = SecurityUtils.getLoginUser();
|
||||||
|
if (loginUser != null){
|
||||||
|
Long topOrganizationId = loginUser.getUserPo().getTopOrganizationId();
|
||||||
|
if (topOrganizationId != null && topOrganizationId != 1){
|
||||||
|
businessDocumentCargoMultiDO.setTopOrganizationId(loginUser.getUserPo().getTopOrganizationId());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return businessDocumentCargoMultiDomainService.queryList(businessDocumentCargoMultiDO);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 新增【请填写功能名称】
|
||||||
|
*/
|
||||||
|
public Boolean insert(BusinessDocumentCargoMultiDO businessDocumentCargoMultiDO) {
|
||||||
|
|
||||||
|
return businessDocumentCargoMultiDomainService.insert(businessDocumentCargoMultiDO);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改【请填写功能名称】
|
||||||
|
*/
|
||||||
|
public Boolean update(BusinessDocumentCargoMultiDO businessDocumentCargoMultiDO) {
|
||||||
|
return businessDocumentCargoMultiDomainService.update(businessDocumentCargoMultiDO);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 批量删除【请填写功能名称】
|
||||||
|
*/
|
||||||
|
public boolean delete(Long[] ids) {
|
||||||
|
return businessDocumentCargoMultiDomainService.delete(ids);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取【请填写功能名称】详细信息
|
||||||
|
*/
|
||||||
|
public BusinessDocumentCargoMultiPO getInfo(Long id)
|
||||||
|
{
|
||||||
|
return businessDocumentCargoMultiDomainService.getInfo(id);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
+81
@@ -0,0 +1,81 @@
|
|||||||
|
package com.mhd.oms.application.service.businessDocumentOrder;
|
||||||
|
|
||||||
|
import com.mhd.oms.domain.businessDocumentOrder.repository.po.BusinessDocumentOrderPO;
|
||||||
|
import com.mhd.oms.domain.businessDocumentOrder.repository.todo.BusinessDocumentOrderDO;
|
||||||
|
import com.mhd.oms.domain.businessDocumentOrder.service.BusinessDocumentOrderDomainService;
|
||||||
|
import com.mhd.common.security.utils.SecurityUtils;
|
||||||
|
import com.mhd.system.api.model.LoginUser;
|
||||||
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
import org.springframework.web.bind.annotation.RequestParam;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
/**
|
||||||
|
* 【请填写功能名称】ApplicationService
|
||||||
|
*
|
||||||
|
* @author gen
|
||||||
|
* @date 2026-01-26
|
||||||
|
*/
|
||||||
|
@Service
|
||||||
|
@Slf4j
|
||||||
|
public class BusinessDocumentOrderApplicationService {
|
||||||
|
@Autowired
|
||||||
|
private BusinessDocumentOrderDomainService businessDocumentOrderDomainService;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 分页查询【请填写功能名称】列表
|
||||||
|
*/
|
||||||
|
|
||||||
|
public List<BusinessDocumentOrderPO> queryList(BusinessDocumentOrderDO businessDocumentOrderDO) {
|
||||||
|
LoginUser loginUser = SecurityUtils.getLoginUser();
|
||||||
|
if (loginUser != null){
|
||||||
|
Long topOrganizationId = loginUser.getUserPo().getTopOrganizationId();
|
||||||
|
if (topOrganizationId != null && topOrganizationId != 1){
|
||||||
|
businessDocumentOrderDO.setTopOrganizationId(loginUser.getUserPo().getTopOrganizationId());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return businessDocumentOrderDomainService.queryList(businessDocumentOrderDO);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 新增【请填写功能名称】
|
||||||
|
*/
|
||||||
|
public Boolean insert(BusinessDocumentOrderDO businessDocumentOrderDO) {
|
||||||
|
|
||||||
|
return businessDocumentOrderDomainService.insert(businessDocumentOrderDO);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改【请填写功能名称】
|
||||||
|
*/
|
||||||
|
public Boolean update(BusinessDocumentOrderDO businessDocumentOrderDO) {
|
||||||
|
return businessDocumentOrderDomainService.update(businessDocumentOrderDO);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 批量删除【请填写功能名称】
|
||||||
|
*/
|
||||||
|
public boolean delete(Long[] ids) {
|
||||||
|
return businessDocumentOrderDomainService.delete(ids);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取【请填写功能名称】详细信息
|
||||||
|
*/
|
||||||
|
public BusinessDocumentOrderPO getInfo(Long id)
|
||||||
|
{
|
||||||
|
return businessDocumentOrderDomainService.getInfo(id);
|
||||||
|
}
|
||||||
|
|
||||||
|
public BusinessDocumentOrderPO audit( Long id, Long reviewStatus)
|
||||||
|
{
|
||||||
|
return businessDocumentOrderDomainService.audit(id,reviewStatus);
|
||||||
|
}
|
||||||
|
public boolean execute(Long[] ids) {
|
||||||
|
return businessDocumentOrderDomainService.execute(ids);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
+72
@@ -0,0 +1,72 @@
|
|||||||
|
package com.mhd.oms.application.service.executeOrder;
|
||||||
|
|
||||||
|
import com.mhd.oms.domain.executeOrder.repository.po.ExecuteOrderPO;
|
||||||
|
import com.mhd.oms.domain.executeOrder.repository.todo.ExecuteOrderDO;
|
||||||
|
import com.mhd.oms.domain.executeOrder.service.ExecuteOrderDomainService;
|
||||||
|
import com.mhd.common.security.utils.SecurityUtils;
|
||||||
|
import com.mhd.system.api.model.LoginUser;
|
||||||
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
import java.util.List;
|
||||||
|
/**
|
||||||
|
* 【请填写功能名称】ApplicationService
|
||||||
|
*
|
||||||
|
* @author gen
|
||||||
|
* @date 2026-01-27
|
||||||
|
*/
|
||||||
|
@Service
|
||||||
|
@Slf4j
|
||||||
|
public class ExecuteOrderApplicationService {
|
||||||
|
@Autowired
|
||||||
|
private ExecuteOrderDomainService executeOrderDomainService;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 分页查询【请填写功能名称】列表
|
||||||
|
*/
|
||||||
|
|
||||||
|
public List<ExecuteOrderPO> queryList(ExecuteOrderDO executeOrderDO) {
|
||||||
|
LoginUser loginUser = SecurityUtils.getLoginUser();
|
||||||
|
if (loginUser != null){
|
||||||
|
Long topOrganizationId = loginUser.getUserPo().getTopOrganizationId();
|
||||||
|
if (topOrganizationId != null && topOrganizationId != 1){
|
||||||
|
executeOrderDO.setTopOrganizationId(loginUser.getUserPo().getTopOrganizationId());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return executeOrderDomainService.queryList(executeOrderDO);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 新增【请填写功能名称】
|
||||||
|
*/
|
||||||
|
public Boolean insert(ExecuteOrderDO executeOrderDO) {
|
||||||
|
|
||||||
|
return executeOrderDomainService.insert(executeOrderDO);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改【请填写功能名称】
|
||||||
|
*/
|
||||||
|
public Boolean update(ExecuteOrderDO executeOrderDO) {
|
||||||
|
return executeOrderDomainService.update(executeOrderDO);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 批量删除【请填写功能名称】
|
||||||
|
*/
|
||||||
|
public boolean delete(Long[] ids) {
|
||||||
|
return executeOrderDomainService.delete(ids);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取【请填写功能名称】详细信息
|
||||||
|
*/
|
||||||
|
public ExecuteOrderPO getInfo(Long id)
|
||||||
|
{
|
||||||
|
return executeOrderDomainService.getInfo(id);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
+99
@@ -0,0 +1,99 @@
|
|||||||
|
package com.mhd.oms.domain.businessDocumentAddressMulti.entity;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.IdType;
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableId;
|
||||||
|
import com.mhd.common.core.annotation.Excel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import com.mhd.common.core.web.domain.BaseVOEntity;
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import lombok.Data;
|
||||||
|
import java.util.Date;
|
||||||
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 【请填写功能名称】对象 business_document_address_multi
|
||||||
|
*
|
||||||
|
* @author gen
|
||||||
|
* @date 2026-01-26
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class BusinessDocumentAddressMulti extends BaseVOEntity{
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
@TableId(type = IdType.AUTO)
|
||||||
|
private Long id;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long organizationId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String organizationName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long topOrganizationId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String orderId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String areaCode;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String areaName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String address;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String longitude;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String latitude;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String contactName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String contactPhone;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Date layDate;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String layTime;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String layTimeId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long layType;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long sort;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String shortName;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
+43
@@ -0,0 +1,43 @@
|
|||||||
|
package com.mhd.oms.domain.businessDocumentAddressMulti.repository.facade;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.extension.service.IService;
|
||||||
|
import com.mhd.oms.domain.businessDocumentAddressMulti.entity.BusinessDocumentAddressMulti;
|
||||||
|
import com.mhd.oms.domain.businessDocumentAddressMulti.repository.po.BusinessDocumentAddressMultiPO;
|
||||||
|
import com.mhd.oms.domain.businessDocumentAddressMulti.repository.todo.BusinessDocumentAddressMultiDO;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 【请填写功能名称】Service接口
|
||||||
|
*
|
||||||
|
* @author gen
|
||||||
|
* @date 2026-01-26
|
||||||
|
*/
|
||||||
|
public interface IBusinessDocumentAddressMultiService extends IService<BusinessDocumentAddressMulti>
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* 分页查询【请填写功能名称】列表
|
||||||
|
*/
|
||||||
|
public List<BusinessDocumentAddressMultiPO> queryList(BusinessDocumentAddressMultiDO businessDocumentAddressMultiDO);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 新增【请填写功能名称】
|
||||||
|
*/
|
||||||
|
public Boolean insert(BusinessDocumentAddressMultiDO businessDocumentAddressMultiDO);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改【请填写功能名称】
|
||||||
|
*/
|
||||||
|
public Boolean update(BusinessDocumentAddressMultiDO businessDocumentAddressMultiDO);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 批量删除【请填写功能名称】
|
||||||
|
*/
|
||||||
|
public Boolean delete(Long[] ids);
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询【请填写功能名称】
|
||||||
|
*/
|
||||||
|
public BusinessDocumentAddressMultiPO getInfo(Long id);
|
||||||
|
}
|
||||||
+22
@@ -0,0 +1,22 @@
|
|||||||
|
package com.mhd.oms.domain.businessDocumentAddressMulti.repository.mapper;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||||
|
import com.mhd.oms.domain.businessDocumentAddressMulti.entity.BusinessDocumentAddressMulti;
|
||||||
|
import com.mhd.oms.domain.businessDocumentAddressMulti.repository.po.BusinessDocumentAddressMultiPO;
|
||||||
|
import com.mhd.oms.domain.businessDocumentAddressMulti.repository.todo.BusinessDocumentAddressMultiDO;
|
||||||
|
import org.apache.ibatis.annotations.Param;
|
||||||
|
/**
|
||||||
|
* 【请填写功能名称】Mapper接口
|
||||||
|
*
|
||||||
|
* @author gen
|
||||||
|
* @date 2026-01-26
|
||||||
|
*/
|
||||||
|
public interface BusinessDocumentAddressMultiMapper extends BaseMapper<BusinessDocumentAddressMulti>
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* 查询【请填写功能名称】列表
|
||||||
|
*/
|
||||||
|
public List<BusinessDocumentAddressMultiPO> queryList(BusinessDocumentAddressMultiDO businessDocumentAddressMultiDO);
|
||||||
|
|
||||||
|
}
|
||||||
+81
@@ -0,0 +1,81 @@
|
|||||||
|
package com.mhd.oms.domain.businessDocumentAddressMulti.repository.persistence;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||||
|
import com.mhd.oms.domain.businessDocumentAddressMulti.entity.BusinessDocumentAddressMulti;
|
||||||
|
import com.mhd.oms.domain.businessDocumentAddressMulti.repository.facade.IBusinessDocumentAddressMultiService;
|
||||||
|
import com.mhd.oms.domain.businessDocumentAddressMulti.repository.mapper.BusinessDocumentAddressMultiMapper;
|
||||||
|
import com.mhd.oms.domain.businessDocumentAddressMulti.repository.po.BusinessDocumentAddressMultiPO;
|
||||||
|
import com.mhd.oms.domain.businessDocumentAddressMulti.repository.todo.BusinessDocumentAddressMultiDO;
|
||||||
|
import org.springframework.beans.BeanUtils;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 【请填写功能名称】Service业务层处理
|
||||||
|
*
|
||||||
|
* @author gen
|
||||||
|
* @date 2026-01-26
|
||||||
|
*/
|
||||||
|
@Service
|
||||||
|
public class BusinessDocumentAddressMultiImpl extends ServiceImpl<BusinessDocumentAddressMultiMapper, BusinessDocumentAddressMulti> implements IBusinessDocumentAddressMultiService{
|
||||||
|
@Autowired
|
||||||
|
private BusinessDocumentAddressMultiMapper businessDocumentAddressMultiMapper;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询【请填写功能名称】列表
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public List<BusinessDocumentAddressMultiPO> queryList(BusinessDocumentAddressMultiDO businessDocumentAddressMultiDO)
|
||||||
|
{
|
||||||
|
return businessDocumentAddressMultiMapper.queryList(businessDocumentAddressMultiDO);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 新增【请填写功能名称】
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public Boolean insert(BusinessDocumentAddressMultiDO businessDocumentAddressMultiDO) {
|
||||||
|
BusinessDocumentAddressMulti businessDocumentAddressMulti = new BusinessDocumentAddressMulti();
|
||||||
|
BeanUtils.copyProperties(businessDocumentAddressMultiDO,businessDocumentAddressMulti);
|
||||||
|
return this.save(businessDocumentAddressMulti);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改【请填写功能名称】
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public Boolean update(BusinessDocumentAddressMultiDO businessDocumentAddressMultiDO) {
|
||||||
|
BusinessDocumentAddressMulti businessDocumentAddressMulti = new BusinessDocumentAddressMulti();
|
||||||
|
BeanUtils.copyProperties(businessDocumentAddressMultiDO,businessDocumentAddressMulti);
|
||||||
|
return this.updateById(businessDocumentAddressMulti);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 批量删除【请填写功能名称】
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public Boolean delete(Long[] ids ) {
|
||||||
|
List<BusinessDocumentAddressMulti> list = new ArrayList<>();
|
||||||
|
for (Long id : ids) {
|
||||||
|
BusinessDocumentAddressMulti businessDocumentAddressMulti = new BusinessDocumentAddressMulti();
|
||||||
|
businessDocumentAddressMulti.setId(id);
|
||||||
|
businessDocumentAddressMulti.setDelFlag(2);
|
||||||
|
list.add(businessDocumentAddressMulti);
|
||||||
|
}
|
||||||
|
return this.updateBatchById(list);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改【请填写功能名称】
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public BusinessDocumentAddressMultiPO getInfo(Long id) {
|
||||||
|
BusinessDocumentAddressMulti businessDocumentAddressMulti = this.getById(id);
|
||||||
|
BusinessDocumentAddressMultiPO businessDocumentAddressMultiPO = new BusinessDocumentAddressMultiPO();
|
||||||
|
BeanUtils.copyProperties(businessDocumentAddressMulti,businessDocumentAddressMultiPO);
|
||||||
|
return businessDocumentAddressMultiPO;
|
||||||
|
}
|
||||||
|
}
|
||||||
+99
@@ -0,0 +1,99 @@
|
|||||||
|
package com.mhd.oms.domain.businessDocumentAddressMulti.repository.po;
|
||||||
|
|
||||||
|
import com.mhd.common.core.annotation.Excel;
|
||||||
|
import lombok.Data;
|
||||||
|
import java.util.Date;
|
||||||
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import com.mhd.common.core.web.domain.BaseVOEntity;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 【请填写功能名称】对象 business_document_address_multi
|
||||||
|
*
|
||||||
|
* @author gen
|
||||||
|
* @date 2026-01-26
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Data
|
||||||
|
@ApiModel(value = "【请填写功能名称】对象", description = "【请填写功能名称】响应对象")
|
||||||
|
public class BusinessDocumentAddressMultiPO extends BaseVOEntity{
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long id;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long organizationId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String organizationName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long topOrganizationId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String orderId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String areaCode;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String areaName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String address;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String longitude;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String latitude;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String contactName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String contactPhone;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Date layDate;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String layTime;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String layTimeId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long layType;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long sort;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String shortName;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
+102
@@ -0,0 +1,102 @@
|
|||||||
|
package com.mhd.oms.domain.businessDocumentAddressMulti.repository.todo;
|
||||||
|
|
||||||
|
import com.mhd.common.core.annotation.Excel;
|
||||||
|
import lombok.Data;
|
||||||
|
import java.util.Date;
|
||||||
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import com.mhd.common.core.web.domain.BaseVOEntity;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 【请填写功能名称】对象 business_document_address_multi
|
||||||
|
*
|
||||||
|
* @author gen
|
||||||
|
* @date 2026-01-26
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class BusinessDocumentAddressMultiDO extends BaseVOEntity{
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long id;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long organizationId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String organizationName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long topOrganizationId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String orderId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String areaCode;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String areaName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String address;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String longitude;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String latitude;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String contactName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String contactPhone;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Date layDate;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String layTime;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String layTimeId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long layType;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long sort;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String shortName;
|
||||||
|
|
||||||
|
@ApiModelProperty(name = "组织ID集合")
|
||||||
|
private List<Long> organizationIdList;
|
||||||
|
|
||||||
|
@ApiModelProperty(name = "权限菜单ID")
|
||||||
|
private Long permissionMenuId;
|
||||||
|
}
|
||||||
+64
@@ -0,0 +1,64 @@
|
|||||||
|
package com.mhd.oms.domain.businessDocumentAddressMulti.service;
|
||||||
|
|
||||||
|
import com.mhd.oms.domain.businessDocumentAddressMulti.repository.facade.IBusinessDocumentAddressMultiService;
|
||||||
|
import com.mhd.oms.domain.businessDocumentAddressMulti.repository.po.BusinessDocumentAddressMultiPO;
|
||||||
|
import com.mhd.oms.domain.businessDocumentAddressMulti.repository.todo.BusinessDocumentAddressMultiDO;
|
||||||
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
/**
|
||||||
|
* 【请填写功能名称】
|
||||||
|
*
|
||||||
|
* @author gen
|
||||||
|
* @date 2026-01-26
|
||||||
|
*/
|
||||||
|
@Service
|
||||||
|
@Slf4j
|
||||||
|
public class BusinessDocumentAddressMultiDomainService {
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private IBusinessDocumentAddressMultiService businessDocumentAddressMultiService;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 分页查询【请填写功能名称】列表
|
||||||
|
*/
|
||||||
|
public List<BusinessDocumentAddressMultiPO> queryList(BusinessDocumentAddressMultiDO businessDocumentAddressMultiDO) {
|
||||||
|
return businessDocumentAddressMultiService.queryList(businessDocumentAddressMultiDO);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 新增【请填写功能名称】
|
||||||
|
*/
|
||||||
|
public Boolean insert(BusinessDocumentAddressMultiDO businessDocumentAddressMultiDO) {
|
||||||
|
|
||||||
|
return businessDocumentAddressMultiService.insert(businessDocumentAddressMultiDO);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改【请填写功能名称】
|
||||||
|
*/
|
||||||
|
public Boolean update(BusinessDocumentAddressMultiDO businessDocumentAddressMultiDO) {
|
||||||
|
return businessDocumentAddressMultiService.update(businessDocumentAddressMultiDO);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 批量删除【请填写功能名称】
|
||||||
|
*/
|
||||||
|
public Boolean delete(Long[] ids) {
|
||||||
|
return businessDocumentAddressMultiService.delete(ids);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取【请填写功能名称】详细信息
|
||||||
|
*/
|
||||||
|
public BusinessDocumentAddressMultiPO getInfo(Long id)
|
||||||
|
{
|
||||||
|
return businessDocumentAddressMultiService.getInfo(id);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
+67
@@ -0,0 +1,67 @@
|
|||||||
|
package com.mhd.oms.domain.businessDocumentCargoMulti.entity;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.IdType;
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableId;
|
||||||
|
import com.mhd.common.core.annotation.Excel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import com.mhd.common.core.web.domain.BaseVOEntity;
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import lombok.Data;
|
||||||
|
import java.util.Date;
|
||||||
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 【请填写功能名称】对象 business_document_cargo_multi
|
||||||
|
*
|
||||||
|
* @author gen
|
||||||
|
* @date 2026-01-26
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class BusinessDocumentCargoMulti extends BaseVOEntity{
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
@TableId(type = IdType.AUTO)
|
||||||
|
private Long id;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long organizationId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String organizationName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long topOrganizationId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String layInfoId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsTypeId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsType;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsNameId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal cargoWeight;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
+43
@@ -0,0 +1,43 @@
|
|||||||
|
package com.mhd.oms.domain.businessDocumentCargoMulti.repository.facade;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.extension.service.IService;
|
||||||
|
import com.mhd.oms.domain.businessDocumentCargoMulti.entity.BusinessDocumentCargoMulti;
|
||||||
|
import com.mhd.oms.domain.businessDocumentCargoMulti.repository.po.BusinessDocumentCargoMultiPO;
|
||||||
|
import com.mhd.oms.domain.businessDocumentCargoMulti.repository.todo.BusinessDocumentCargoMultiDO;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 【请填写功能名称】Service接口
|
||||||
|
*
|
||||||
|
* @author gen
|
||||||
|
* @date 2026-01-26
|
||||||
|
*/
|
||||||
|
public interface IBusinessDocumentCargoMultiService extends IService<BusinessDocumentCargoMulti>
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* 分页查询【请填写功能名称】列表
|
||||||
|
*/
|
||||||
|
public List<BusinessDocumentCargoMultiPO> queryList(BusinessDocumentCargoMultiDO businessDocumentCargoMultiDO);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 新增【请填写功能名称】
|
||||||
|
*/
|
||||||
|
public Boolean insert(BusinessDocumentCargoMultiDO businessDocumentCargoMultiDO);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改【请填写功能名称】
|
||||||
|
*/
|
||||||
|
public Boolean update(BusinessDocumentCargoMultiDO businessDocumentCargoMultiDO);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 批量删除【请填写功能名称】
|
||||||
|
*/
|
||||||
|
public Boolean delete(Long[] ids);
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询【请填写功能名称】
|
||||||
|
*/
|
||||||
|
public BusinessDocumentCargoMultiPO getInfo(Long id);
|
||||||
|
}
|
||||||
+22
@@ -0,0 +1,22 @@
|
|||||||
|
package com.mhd.oms.domain.businessDocumentCargoMulti.repository.mapper;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||||
|
import com.mhd.oms.domain.businessDocumentCargoMulti.entity.BusinessDocumentCargoMulti;
|
||||||
|
import com.mhd.oms.domain.businessDocumentCargoMulti.repository.po.BusinessDocumentCargoMultiPO;
|
||||||
|
import com.mhd.oms.domain.businessDocumentCargoMulti.repository.todo.BusinessDocumentCargoMultiDO;
|
||||||
|
import org.apache.ibatis.annotations.Param;
|
||||||
|
/**
|
||||||
|
* 【请填写功能名称】Mapper接口
|
||||||
|
*
|
||||||
|
* @author gen
|
||||||
|
* @date 2026-01-26
|
||||||
|
*/
|
||||||
|
public interface BusinessDocumentCargoMultiMapper extends BaseMapper<BusinessDocumentCargoMulti>
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* 查询【请填写功能名称】列表
|
||||||
|
*/
|
||||||
|
public List<BusinessDocumentCargoMultiPO> queryList(BusinessDocumentCargoMultiDO businessDocumentCargoMultiDO);
|
||||||
|
|
||||||
|
}
|
||||||
+81
@@ -0,0 +1,81 @@
|
|||||||
|
package com.mhd.oms.domain.businessDocumentCargoMulti.repository.persistence;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||||
|
import com.mhd.oms.domain.businessDocumentCargoMulti.entity.BusinessDocumentCargoMulti;
|
||||||
|
import com.mhd.oms.domain.businessDocumentCargoMulti.repository.facade.IBusinessDocumentCargoMultiService;
|
||||||
|
import com.mhd.oms.domain.businessDocumentCargoMulti.repository.mapper.BusinessDocumentCargoMultiMapper;
|
||||||
|
import com.mhd.oms.domain.businessDocumentCargoMulti.repository.po.BusinessDocumentCargoMultiPO;
|
||||||
|
import com.mhd.oms.domain.businessDocumentCargoMulti.repository.todo.BusinessDocumentCargoMultiDO;
|
||||||
|
import org.springframework.beans.BeanUtils;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 【请填写功能名称】Service业务层处理
|
||||||
|
*
|
||||||
|
* @author gen
|
||||||
|
* @date 2026-01-26
|
||||||
|
*/
|
||||||
|
@Service
|
||||||
|
public class BusinessDocumentCargoMultiImpl extends ServiceImpl<BusinessDocumentCargoMultiMapper, BusinessDocumentCargoMulti> implements IBusinessDocumentCargoMultiService{
|
||||||
|
@Autowired
|
||||||
|
private BusinessDocumentCargoMultiMapper businessDocumentCargoMultiMapper;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询【请填写功能名称】列表
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public List<BusinessDocumentCargoMultiPO> queryList(BusinessDocumentCargoMultiDO businessDocumentCargoMultiDO)
|
||||||
|
{
|
||||||
|
return businessDocumentCargoMultiMapper.queryList(businessDocumentCargoMultiDO);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 新增【请填写功能名称】
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public Boolean insert(BusinessDocumentCargoMultiDO businessDocumentCargoMultiDO) {
|
||||||
|
BusinessDocumentCargoMulti businessDocumentCargoMulti = new BusinessDocumentCargoMulti();
|
||||||
|
BeanUtils.copyProperties(businessDocumentCargoMultiDO,businessDocumentCargoMulti);
|
||||||
|
return this.save(businessDocumentCargoMulti);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改【请填写功能名称】
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public Boolean update(BusinessDocumentCargoMultiDO businessDocumentCargoMultiDO) {
|
||||||
|
BusinessDocumentCargoMulti businessDocumentCargoMulti = new BusinessDocumentCargoMulti();
|
||||||
|
BeanUtils.copyProperties(businessDocumentCargoMultiDO,businessDocumentCargoMulti);
|
||||||
|
return this.updateById(businessDocumentCargoMulti);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 批量删除【请填写功能名称】
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public Boolean delete(Long[] ids ) {
|
||||||
|
List<BusinessDocumentCargoMulti> list = new ArrayList<>();
|
||||||
|
for (Long id : ids) {
|
||||||
|
BusinessDocumentCargoMulti businessDocumentCargoMulti = new BusinessDocumentCargoMulti();
|
||||||
|
businessDocumentCargoMulti.setId(id);
|
||||||
|
businessDocumentCargoMulti.setDelFlag(2);
|
||||||
|
list.add(businessDocumentCargoMulti);
|
||||||
|
}
|
||||||
|
return this.updateBatchById(list);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改【请填写功能名称】
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public BusinessDocumentCargoMultiPO getInfo(Long id) {
|
||||||
|
BusinessDocumentCargoMulti businessDocumentCargoMulti = this.getById(id);
|
||||||
|
BusinessDocumentCargoMultiPO businessDocumentCargoMultiPO = new BusinessDocumentCargoMultiPO();
|
||||||
|
BeanUtils.copyProperties(businessDocumentCargoMulti,businessDocumentCargoMultiPO);
|
||||||
|
return businessDocumentCargoMultiPO;
|
||||||
|
}
|
||||||
|
}
|
||||||
+67
@@ -0,0 +1,67 @@
|
|||||||
|
package com.mhd.oms.domain.businessDocumentCargoMulti.repository.po;
|
||||||
|
|
||||||
|
import com.mhd.common.core.annotation.Excel;
|
||||||
|
import lombok.Data;
|
||||||
|
import java.util.Date;
|
||||||
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import com.mhd.common.core.web.domain.BaseVOEntity;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 【请填写功能名称】对象 business_document_cargo_multi
|
||||||
|
*
|
||||||
|
* @author gen
|
||||||
|
* @date 2026-01-26
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Data
|
||||||
|
@ApiModel(value = "【请填写功能名称】对象", description = "【请填写功能名称】响应对象")
|
||||||
|
public class BusinessDocumentCargoMultiPO extends BaseVOEntity{
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long id;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long organizationId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String organizationName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long topOrganizationId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String layInfoId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsTypeId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsType;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsNameId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal cargoWeight;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
+70
@@ -0,0 +1,70 @@
|
|||||||
|
package com.mhd.oms.domain.businessDocumentCargoMulti.repository.todo;
|
||||||
|
|
||||||
|
import com.mhd.common.core.annotation.Excel;
|
||||||
|
import lombok.Data;
|
||||||
|
import java.util.Date;
|
||||||
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import com.mhd.common.core.web.domain.BaseVOEntity;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 【请填写功能名称】对象 business_document_cargo_multi
|
||||||
|
*
|
||||||
|
* @author gen
|
||||||
|
* @date 2026-01-26
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class BusinessDocumentCargoMultiDO extends BaseVOEntity{
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long id;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long organizationId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String organizationName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long topOrganizationId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String layInfoId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsTypeId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsType;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsNameId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal cargoWeight;
|
||||||
|
|
||||||
|
@ApiModelProperty(name = "组织ID集合")
|
||||||
|
private List<Long> organizationIdList;
|
||||||
|
|
||||||
|
@ApiModelProperty(name = "权限菜单ID")
|
||||||
|
private Long permissionMenuId;
|
||||||
|
}
|
||||||
+64
@@ -0,0 +1,64 @@
|
|||||||
|
package com.mhd.oms.domain.businessDocumentCargoMulti.service;
|
||||||
|
|
||||||
|
import com.mhd.oms.domain.businessDocumentCargoMulti.repository.facade.IBusinessDocumentCargoMultiService;
|
||||||
|
import com.mhd.oms.domain.businessDocumentCargoMulti.repository.po.BusinessDocumentCargoMultiPO;
|
||||||
|
import com.mhd.oms.domain.businessDocumentCargoMulti.repository.todo.BusinessDocumentCargoMultiDO;
|
||||||
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
/**
|
||||||
|
* 【请填写功能名称】
|
||||||
|
*
|
||||||
|
* @author gen
|
||||||
|
* @date 2026-01-26
|
||||||
|
*/
|
||||||
|
@Service
|
||||||
|
@Slf4j
|
||||||
|
public class BusinessDocumentCargoMultiDomainService {
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private IBusinessDocumentCargoMultiService businessDocumentCargoMultiService;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 分页查询【请填写功能名称】列表
|
||||||
|
*/
|
||||||
|
public List<BusinessDocumentCargoMultiPO> queryList(BusinessDocumentCargoMultiDO businessDocumentCargoMultiDO) {
|
||||||
|
return businessDocumentCargoMultiService.queryList(businessDocumentCargoMultiDO);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 新增【请填写功能名称】
|
||||||
|
*/
|
||||||
|
public Boolean insert(BusinessDocumentCargoMultiDO businessDocumentCargoMultiDO) {
|
||||||
|
|
||||||
|
return businessDocumentCargoMultiService.insert(businessDocumentCargoMultiDO);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改【请填写功能名称】
|
||||||
|
*/
|
||||||
|
public Boolean update(BusinessDocumentCargoMultiDO businessDocumentCargoMultiDO) {
|
||||||
|
return businessDocumentCargoMultiService.update(businessDocumentCargoMultiDO);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 批量删除【请填写功能名称】
|
||||||
|
*/
|
||||||
|
public Boolean delete(Long[] ids) {
|
||||||
|
return businessDocumentCargoMultiService.delete(ids);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取【请填写功能名称】详细信息
|
||||||
|
*/
|
||||||
|
public BusinessDocumentCargoMultiPO getInfo(Long id)
|
||||||
|
{
|
||||||
|
return businessDocumentCargoMultiService.getInfo(id);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
+691
@@ -0,0 +1,691 @@
|
|||||||
|
package com.mhd.oms.domain.businessDocumentOrder.entity;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.IdType;
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableId;
|
||||||
|
import com.mhd.common.core.annotation.Excel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import com.mhd.common.core.web.domain.BaseVOEntity;
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import lombok.Data;
|
||||||
|
import java.util.Date;
|
||||||
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||||
|
import org.springframework.format.annotation.DateTimeFormat;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 【请填写功能名称】对象 business_document_order
|
||||||
|
*
|
||||||
|
* @author gen
|
||||||
|
* @date 2026-01-26
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class BusinessDocumentOrder extends BaseVOEntity{
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
@TableId(type = IdType.AUTO)
|
||||||
|
private Long id;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String realCreateBy;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String realCreateName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String createCompanyId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsNumber;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String loadingAreaId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String loadingName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String loadingAddress;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String loadingLongitude;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String loadingLatitude;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String loadingUnit;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String freighterName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String loadingPhone;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Date loadingDate;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String unloadAreaId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String unloadName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String unloadAddress;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String unloadLongitude;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String unloadLatitude;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String dischargerName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String unloadPhone;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Date unloadingData;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsTypeId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsType;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsNameId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal weightMin;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal weightMax;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsUntisId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsUntis;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long transportationModeId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String transportationName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String carType;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String carTypeName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String serviceRequireId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String serviceRequire;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String remarks;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long waybillFrom;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long isSource;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Date sourceCloseTime;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String executorId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long isDelete;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String lineTitleLeft;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String lineTitleRight;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String sysOrgCode;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long isCommon;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsTypeMajor;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long auditStatus;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long waybillMode;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Date latestBiddingTime;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal deliveryFreight;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal collectedFreight;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal uncollectedFreight;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal collectLessFreight;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String auditBy;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Date auditTime;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String businessType;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal transportationUnitPrice;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long radioValue;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String createrName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String createrPhone;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long isElectricFence;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String wxaQrcode;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String appointShipperId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String createUserId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String appointShipper;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long isStatus;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String signatureAddress;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String qrCodeImgUrl;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String shippingNote;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long receivableType;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String thirdPartyOrderNumber;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String dispatchOrderNumber;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String appointDriverEnterpriseId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String appointDriverEnterprise;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String cancelOrderRemark;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String orderDriverId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal goodsQuantity;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsQuantityUnitId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsQuantityUnit;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String biddingUnit;
|
||||||
|
|
||||||
|
@ApiModelProperty("业务单状态 0-待审核 1-待执行 2-进行中 3-已完成 4-已取消 5-已拦截")
|
||||||
|
private Long orderStatus;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long splicingOrderType;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long splicingStatus;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String mainOrderId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String mainOrderNum;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String mergeOrderId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String mergeOrderNum;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long payerType;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String machineNumber;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long stockFlag;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal infoFee;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long infoFeePayeeType;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String infoFeePayee;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long infoFeeStatus;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String infoFeeDocumentNumber;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long orderShippingType;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String recipientId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String recipientName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long settlementStatus;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Date settlementTime;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Date paymentTime;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String reconciliationInnerNumber;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String receivePaymentNumber;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String invoiceId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long isInvoice;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String vehicleTypeId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String vehicleTypeName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String carrier;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String carrierName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long szwlUserId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal freightUnitPrice;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long biddingStatus;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String biddingRemarks;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal cargoInsuranceAmount;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String destination;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal freightCharges;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String payer;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String salesmanId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long isDeclare;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String route;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String containerType;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String containerTypeName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String cardType;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String cardTypeName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String externalContainerNo;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String transitPlace;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String shipper;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String customsShipper;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String customsShipperTel;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String unloadingCompany;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String contractNo;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal freightFee;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal unloadingFee;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal customsFee;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal shortageFee;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal miscellaneousFee;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal otherFee;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal detentionFee;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal taxRate;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String settlementCurrency;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal volume;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String detailContent;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String customsRoute;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String customsPort;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String customsContact;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String customsContactPhone;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String customsRemark;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String orgId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsCategory;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String makerCodeNc;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String salesmanCodeNc;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String customerCodeNc;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String salesmanName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String orgName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long organizationId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String organizationName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long topOrganizationId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Date documentDate;
|
||||||
|
|
||||||
|
@ApiModelProperty( "审核状态 0-未审核 1-审核通过 2-已驳回")
|
||||||
|
private Long reviewStatus;
|
||||||
|
|
||||||
|
@ApiModelProperty("审核时间")
|
||||||
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
||||||
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
||||||
|
private Date reviewTime;
|
||||||
|
|
||||||
|
@ApiModelProperty("审核人id")
|
||||||
|
private Long reviewId;
|
||||||
|
|
||||||
|
@ApiModelProperty("审核人")
|
||||||
|
private String review;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ApiModelProperty( "执行状态 0-无状态 1-未执行 2-已执行 3-已下发")
|
||||||
|
private Long executeStatus;
|
||||||
|
|
||||||
|
@ApiModelProperty("执行时间")
|
||||||
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
||||||
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
||||||
|
private Date executeTime;
|
||||||
|
|
||||||
|
@ApiModelProperty("执行人id")
|
||||||
|
private Long executeId;
|
||||||
|
|
||||||
|
@ApiModelProperty("审核人")
|
||||||
|
private String executor;
|
||||||
|
}
|
||||||
+47
@@ -0,0 +1,47 @@
|
|||||||
|
package com.mhd.oms.domain.businessDocumentOrder.repository.facade;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.extension.service.IService;
|
||||||
|
import com.mhd.oms.domain.businessDocumentOrder.entity.BusinessDocumentOrder;
|
||||||
|
import com.mhd.oms.domain.businessDocumentOrder.repository.po.BusinessDocumentOrderPO;
|
||||||
|
import com.mhd.oms.domain.businessDocumentOrder.repository.todo.BusinessDocumentOrderDO;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 【请填写功能名称】Service接口
|
||||||
|
*
|
||||||
|
* @author gen
|
||||||
|
* @date 2026-01-26
|
||||||
|
*/
|
||||||
|
public interface IBusinessDocumentOrderService extends IService<BusinessDocumentOrder>
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* 分页查询【请填写功能名称】列表
|
||||||
|
*/
|
||||||
|
public List<BusinessDocumentOrderPO> queryList(BusinessDocumentOrderDO businessDocumentOrderDO);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 新增【请填写功能名称】
|
||||||
|
*/
|
||||||
|
public Boolean insert(BusinessDocumentOrderDO businessDocumentOrderDO);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改【请填写功能名称】
|
||||||
|
*/
|
||||||
|
public Boolean update(BusinessDocumentOrderDO businessDocumentOrderDO);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 批量删除【请填写功能名称】
|
||||||
|
*/
|
||||||
|
public Boolean delete(Long[] ids);
|
||||||
|
|
||||||
|
public Boolean execute(Long[] ids);
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询【请填写功能名称】
|
||||||
|
*/
|
||||||
|
public BusinessDocumentOrderPO getInfo(Long id);
|
||||||
|
|
||||||
|
public BusinessDocumentOrderPO audit( Long id, Long reviewStatus);
|
||||||
|
}
|
||||||
+22
@@ -0,0 +1,22 @@
|
|||||||
|
package com.mhd.oms.domain.businessDocumentOrder.repository.mapper;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||||
|
import com.mhd.oms.domain.businessDocumentOrder.entity.BusinessDocumentOrder;
|
||||||
|
import com.mhd.oms.domain.businessDocumentOrder.repository.po.BusinessDocumentOrderPO;
|
||||||
|
import com.mhd.oms.domain.businessDocumentOrder.repository.todo.BusinessDocumentOrderDO;
|
||||||
|
import org.apache.ibatis.annotations.Param;
|
||||||
|
/**
|
||||||
|
* 【请填写功能名称】Mapper接口
|
||||||
|
*
|
||||||
|
* @author gen
|
||||||
|
* @date 2026-01-26
|
||||||
|
*/
|
||||||
|
public interface BusinessDocumentOrderMapper extends BaseMapper<BusinessDocumentOrder>
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* 查询【请填写功能名称】列表
|
||||||
|
*/
|
||||||
|
public List<BusinessDocumentOrderPO> queryList(BusinessDocumentOrderDO businessDocumentOrderDO);
|
||||||
|
|
||||||
|
}
|
||||||
+144
@@ -0,0 +1,144 @@
|
|||||||
|
package com.mhd.oms.domain.businessDocumentOrder.repository.persistence;
|
||||||
|
|
||||||
|
import cn.hutool.core.util.ObjectUtil;
|
||||||
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||||
|
import com.mhd.common.security.utils.SecurityUtils;
|
||||||
|
import com.mhd.oms.domain.businessDocumentOrder.entity.BusinessDocumentOrder;
|
||||||
|
import com.mhd.oms.domain.businessDocumentOrder.repository.facade.IBusinessDocumentOrderService;
|
||||||
|
import com.mhd.oms.domain.businessDocumentOrder.repository.mapper.BusinessDocumentOrderMapper;
|
||||||
|
import com.mhd.oms.domain.businessDocumentOrder.repository.po.BusinessDocumentOrderPO;
|
||||||
|
import com.mhd.oms.domain.businessDocumentOrder.repository.todo.BusinessDocumentOrderDO;
|
||||||
|
import com.mhd.oms.domain.executeOrder.entity.ExecuteOrder;
|
||||||
|
import com.mhd.oms.domain.executeOrder.repository.todo.ExecuteOrderDO;
|
||||||
|
import com.mhd.oms.domain.executeOrder.service.ExecuteOrderDomainService;
|
||||||
|
import com.mhd.system.api.model.LoginUser;
|
||||||
|
import org.springframework.beans.BeanUtils;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Date;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 【请填写功能名称】Service业务层处理
|
||||||
|
*
|
||||||
|
* @author gen
|
||||||
|
* @date 2026-01-26
|
||||||
|
*/
|
||||||
|
@Service
|
||||||
|
public class BusinessDocumentOrderImpl extends ServiceImpl<BusinessDocumentOrderMapper, BusinessDocumentOrder> implements IBusinessDocumentOrderService{
|
||||||
|
@Autowired
|
||||||
|
private BusinessDocumentOrderMapper businessDocumentOrderMapper;
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private ExecuteOrderDomainService executeOrderDomainService;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询【请填写功能名称】列表
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public List<BusinessDocumentOrderPO> queryList(BusinessDocumentOrderDO businessDocumentOrderDO)
|
||||||
|
{
|
||||||
|
return businessDocumentOrderMapper.queryList(businessDocumentOrderDO);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 新增【请填写功能名称】
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public Boolean insert(BusinessDocumentOrderDO businessDocumentOrderDO) {
|
||||||
|
BusinessDocumentOrder businessDocumentOrder = new BusinessDocumentOrder();
|
||||||
|
BeanUtils.copyProperties(businessDocumentOrderDO,businessDocumentOrder);
|
||||||
|
return this.save(businessDocumentOrder);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改【请填写功能名称】
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public Boolean update(BusinessDocumentOrderDO businessDocumentOrderDO) {
|
||||||
|
BusinessDocumentOrder businessDocumentOrder = new BusinessDocumentOrder();
|
||||||
|
BeanUtils.copyProperties(businessDocumentOrderDO,businessDocumentOrder);
|
||||||
|
return this.updateById(businessDocumentOrder);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 批量删除【请填写功能名称】
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public Boolean delete(Long[] ids ) {
|
||||||
|
List<BusinessDocumentOrder> list = new ArrayList<>();
|
||||||
|
for (Long id : ids) {
|
||||||
|
BusinessDocumentOrder businessDocumentOrder = new BusinessDocumentOrder();
|
||||||
|
businessDocumentOrder.setId(id);
|
||||||
|
businessDocumentOrder.setDelFlag(2);
|
||||||
|
list.add(businessDocumentOrder);
|
||||||
|
}
|
||||||
|
return this.updateBatchById(list);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改【请填写功能名称】
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public BusinessDocumentOrderPO getInfo(Long id) {
|
||||||
|
BusinessDocumentOrder businessDocumentOrder = this.getById(id);
|
||||||
|
BusinessDocumentOrderPO businessDocumentOrderPO = new BusinessDocumentOrderPO();
|
||||||
|
BeanUtils.copyProperties(businessDocumentOrder,businessDocumentOrderPO);
|
||||||
|
return businessDocumentOrderPO;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public BusinessDocumentOrderPO audit(Long id, Long reviewStatus) {
|
||||||
|
LoginUser loginUser = SecurityUtils.getLoginUser();//获取登录人
|
||||||
|
BusinessDocumentOrder businessDocumentOrder=businessDocumentOrderMapper.selectById(id);
|
||||||
|
if (ObjectUtil.isNotNull(businessDocumentOrder)){
|
||||||
|
businessDocumentOrder.setReviewStatus(reviewStatus);
|
||||||
|
businessDocumentOrder.setReviewId(loginUser.getUserid());
|
||||||
|
businessDocumentOrder.setReview(loginUser.getUsername());
|
||||||
|
businessDocumentOrder.setReviewTime(new Date());
|
||||||
|
if(reviewStatus==1){
|
||||||
|
businessDocumentOrder.setOrderStatus(1L);
|
||||||
|
businessDocumentOrder.setExecuteStatus(1L);
|
||||||
|
}else{
|
||||||
|
businessDocumentOrder.setOrderStatus(0L);
|
||||||
|
}
|
||||||
|
businessDocumentOrderMapper.updateById(businessDocumentOrder);
|
||||||
|
BusinessDocumentOrder businessDocumentOrder1 = this.getById(id);
|
||||||
|
BusinessDocumentOrderPO businessDocumentOrderPO = new BusinessDocumentOrderPO();
|
||||||
|
BeanUtils.copyProperties(businessDocumentOrder1,businessDocumentOrderPO);
|
||||||
|
return businessDocumentOrderPO;
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Boolean execute(Long[] ids) {
|
||||||
|
LoginUser loginUser = SecurityUtils.getLoginUser();//获取登录人
|
||||||
|
for (Long id:ids){
|
||||||
|
BusinessDocumentOrder businessDocumentOrder=businessDocumentOrderMapper.selectById(id);
|
||||||
|
if (ObjectUtil.isNotNull(businessDocumentOrder)){
|
||||||
|
businessDocumentOrder.setExecuteId(loginUser.getUserid());
|
||||||
|
businessDocumentOrder.setExecuteStatus(2L);
|
||||||
|
businessDocumentOrder.setExecuteTime(new Date());
|
||||||
|
businessDocumentOrder.setExecutor(loginUser.getUsername());
|
||||||
|
businessDocumentOrder.setOrderStatus(2L);
|
||||||
|
businessDocumentOrderMapper.updateById(businessDocumentOrder);
|
||||||
|
ExecuteOrderDO executeOrderDO=new ExecuteOrderDO();
|
||||||
|
executeOrderDO.setBusinessDocumentId(id);
|
||||||
|
executeOrderDO.setBusinessDocumentNumber(businessDocumentOrder.getGoodsNumber());
|
||||||
|
executeOrderDO.setGoodsNumber(businessDocumentOrder.getGoodsNumber());
|
||||||
|
executeOrderDO.setCreateBy(loginUser.getUserid());
|
||||||
|
executeOrderDO.setCreateTime(new Date());
|
||||||
|
executeOrderDO.setOrganizationId(businessDocumentOrder.getOrganizationId());
|
||||||
|
executeOrderDO.setOrgName(businessDocumentOrder.getOrgName());
|
||||||
|
executeOrderDO.setTopOrganizationId(businessDocumentOrder.getTopOrganizationId());
|
||||||
|
executeOrderDomainService.insert(executeOrderDO);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
+693
@@ -0,0 +1,693 @@
|
|||||||
|
package com.mhd.oms.domain.businessDocumentOrder.repository.po;
|
||||||
|
|
||||||
|
import com.mhd.common.core.annotation.Excel;
|
||||||
|
import lombok.Data;
|
||||||
|
import java.util.Date;
|
||||||
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import com.mhd.common.core.web.domain.BaseVOEntity;
|
||||||
|
import org.springframework.format.annotation.DateTimeFormat;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 【请填写功能名称】对象 business_document_order
|
||||||
|
*
|
||||||
|
* @author gen
|
||||||
|
* @date 2026-01-26
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Data
|
||||||
|
@ApiModel(value = "【请填写功能名称】对象", description = "【请填写功能名称】响应对象")
|
||||||
|
public class BusinessDocumentOrderPO extends BaseVOEntity{
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long id;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String realCreateBy;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String realCreateName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String createCompanyId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsNumber;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String loadingAreaId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String loadingName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String loadingAddress;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String loadingLongitude;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String loadingLatitude;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String loadingUnit;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String freighterName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String loadingPhone;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Date loadingDate;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String unloadAreaId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String unloadName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String unloadAddress;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String unloadLongitude;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String unloadLatitude;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String dischargerName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String unloadPhone;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Date unloadingData;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsTypeId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsType;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsNameId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal weightMin;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal weightMax;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsUntisId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsUntis;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long transportationModeId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String transportationName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String carType;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String carTypeName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String serviceRequireId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String serviceRequire;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String remarks;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long waybillFrom;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long isSource;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Date sourceCloseTime;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String executorId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long isDelete;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String lineTitleLeft;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String lineTitleRight;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String sysOrgCode;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long isCommon;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsTypeMajor;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long auditStatus;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long waybillMode;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Date latestBiddingTime;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal deliveryFreight;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal collectedFreight;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal uncollectedFreight;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal collectLessFreight;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String auditBy;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Date auditTime;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String businessType;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal transportationUnitPrice;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long radioValue;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String createrName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String createrPhone;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long isElectricFence;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String wxaQrcode;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String appointShipperId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String createUserId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String appointShipper;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long isStatus;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String signatureAddress;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String qrCodeImgUrl;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String shippingNote;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long receivableType;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String thirdPartyOrderNumber;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String dispatchOrderNumber;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String appointDriverEnterpriseId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String appointDriverEnterprise;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String cancelOrderRemark;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String orderDriverId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal goodsQuantity;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsQuantityUnitId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsQuantityUnit;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String biddingUnit;
|
||||||
|
|
||||||
|
@ApiModelProperty("业务单状态 0-待审核 1-待执行 2-进行中 3-已完成 4-已取消 5-已拦截")
|
||||||
|
private Long orderStatus;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long splicingOrderType;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long splicingStatus;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String mainOrderId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String mainOrderNum;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String mergeOrderId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String mergeOrderNum;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long payerType;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String machineNumber;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long stockFlag;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal infoFee;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long infoFeePayeeType;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String infoFeePayee;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long infoFeeStatus;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String infoFeeDocumentNumber;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long orderShippingType;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String recipientId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String recipientName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long settlementStatus;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Date settlementTime;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Date paymentTime;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String reconciliationInnerNumber;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String receivePaymentNumber;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String invoiceId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long isInvoice;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String vehicleTypeId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String vehicleTypeName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String carrier;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String carrierName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long szwlUserId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal freightUnitPrice;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long biddingStatus;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String biddingRemarks;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal cargoInsuranceAmount;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String destination;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal freightCharges;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String payer;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String salesmanId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long isDeclare;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String route;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String containerType;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String containerTypeName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String cardType;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String cardTypeName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String externalContainerNo;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String transitPlace;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String shipper;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String customsShipper;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String customsShipperTel;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String unloadingCompany;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String contractNo;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal freightFee;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal unloadingFee;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal customsFee;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal shortageFee;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal miscellaneousFee;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal otherFee;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal detentionFee;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal taxRate;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String settlementCurrency;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal volume;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String detailContent;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String customsRoute;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String customsPort;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String customsContact;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String customsContactPhone;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String customsRemark;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String orgId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsCategory;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String makerCodeNc;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String salesmanCodeNc;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String customerCodeNc;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String salesmanName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String orgName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long organizationId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String organizationName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long topOrganizationId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Date documentDate;
|
||||||
|
|
||||||
|
|
||||||
|
@ApiModelProperty( "审核状态 0-未审核 1-审核通过 2-已驳回")
|
||||||
|
private Long reviewStatus;
|
||||||
|
|
||||||
|
@ApiModelProperty("审核时间")
|
||||||
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
||||||
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
||||||
|
private Date reviewTime;
|
||||||
|
|
||||||
|
@ApiModelProperty("审核人id")
|
||||||
|
private Long reviewId;
|
||||||
|
|
||||||
|
@ApiModelProperty("审核人")
|
||||||
|
private String review;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long EXECUTE_STATUS;
|
||||||
|
|
||||||
|
@ApiModelProperty( "执行状态 0-无状态 1-未执行 2-已执行 3-已下发")
|
||||||
|
private Long executeStatus;
|
||||||
|
|
||||||
|
@ApiModelProperty("执行时间")
|
||||||
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
||||||
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
||||||
|
private Date executeTime;
|
||||||
|
|
||||||
|
@ApiModelProperty("执行人id")
|
||||||
|
private Long executeId;
|
||||||
|
|
||||||
|
@ApiModelProperty("审核人")
|
||||||
|
private String executor;
|
||||||
|
}
|
||||||
+698
@@ -0,0 +1,698 @@
|
|||||||
|
package com.mhd.oms.domain.businessDocumentOrder.repository.todo;
|
||||||
|
|
||||||
|
import com.mhd.common.core.annotation.Excel;
|
||||||
|
import lombok.Data;
|
||||||
|
import java.util.Date;
|
||||||
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import com.mhd.common.core.web.domain.BaseVOEntity;
|
||||||
|
import org.springframework.format.annotation.DateTimeFormat;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 【请填写功能名称】对象 business_document_order
|
||||||
|
*
|
||||||
|
* @author gen
|
||||||
|
* @date 2026-01-26
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class BusinessDocumentOrderDO extends BaseVOEntity{
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long id;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String realCreateBy;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String realCreateName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String createCompanyId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsNumber;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String loadingAreaId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String loadingName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String loadingAddress;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String loadingLongitude;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String loadingLatitude;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String loadingUnit;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String freighterName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String loadingPhone;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Date loadingDate;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String unloadAreaId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String unloadName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String unloadAddress;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String unloadLongitude;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String unloadLatitude;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String dischargerName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String unloadPhone;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Date unloadingData;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsTypeId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsType;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsNameId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal weightMin;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal weightMax;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsUntisId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsUntis;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long transportationModeId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String transportationName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String carType;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String carTypeName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String serviceRequireId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String serviceRequire;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String remarks;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long waybillFrom;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long isSource;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Date sourceCloseTime;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String executorId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long isDelete;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String lineTitleLeft;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String lineTitleRight;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String sysOrgCode;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long isCommon;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsTypeMajor;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long auditStatus;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long waybillMode;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Date latestBiddingTime;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal deliveryFreight;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal collectedFreight;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal uncollectedFreight;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal collectLessFreight;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String auditBy;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Date auditTime;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String businessType;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal transportationUnitPrice;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long radioValue;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String createrName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String createrPhone;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long isElectricFence;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String wxaQrcode;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String appointShipperId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String createUserId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String appointShipper;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long isStatus;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String signatureAddress;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String qrCodeImgUrl;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String shippingNote;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long receivableType;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String thirdPartyOrderNumber;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String dispatchOrderNumber;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String appointDriverEnterpriseId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String appointDriverEnterprise;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String cancelOrderRemark;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String orderDriverId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal goodsQuantity;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsQuantityUnitId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsQuantityUnit;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String biddingUnit;
|
||||||
|
|
||||||
|
@ApiModelProperty("业务单状态 0-待审核 1-待执行 2-进行中 3-已完成 4-已取消 5-已拦截")
|
||||||
|
private Long orderStatus;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long splicingOrderType;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long splicingStatus;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String mainOrderId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String mainOrderNum;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String mergeOrderId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String mergeOrderNum;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long payerType;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String machineNumber;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long stockFlag;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal infoFee;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long infoFeePayeeType;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String infoFeePayee;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long infoFeeStatus;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String infoFeeDocumentNumber;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long orderShippingType;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String recipientId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String recipientName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long settlementStatus;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Date settlementTime;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Date paymentTime;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String reconciliationInnerNumber;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String receivePaymentNumber;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String invoiceId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long isInvoice;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String vehicleTypeId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String vehicleTypeName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String carrier;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String carrierName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long szwlUserId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal freightUnitPrice;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long biddingStatus;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String biddingRemarks;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal cargoInsuranceAmount;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String destination;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal freightCharges;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String payer;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String salesmanId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long isDeclare;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String route;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String containerType;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String containerTypeName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String cardType;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String cardTypeName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String externalContainerNo;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String transitPlace;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String shipper;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String customsShipper;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String customsShipperTel;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String unloadingCompany;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String contractNo;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal freightFee;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal unloadingFee;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal customsFee;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal shortageFee;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal miscellaneousFee;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal otherFee;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal detentionFee;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal taxRate;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String settlementCurrency;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal volume;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String detailContent;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String customsRoute;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String customsPort;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String customsContact;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String customsContactPhone;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String customsRemark;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String orgId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsCategory;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String makerCodeNc;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String salesmanCodeNc;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String customerCodeNc;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String salesmanName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String orgName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long organizationId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String organizationName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long topOrganizationId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Date documentDate;
|
||||||
|
|
||||||
|
@ApiModelProperty(name = "组织ID集合")
|
||||||
|
private List<Long> organizationIdList;
|
||||||
|
|
||||||
|
@ApiModelProperty(name = "权限菜单ID")
|
||||||
|
private Long permissionMenuId;
|
||||||
|
|
||||||
|
@ApiModelProperty( "审核状态 0-未审核 1-审核通过 2-已驳回")
|
||||||
|
private Long reviewStatus;
|
||||||
|
|
||||||
|
@ApiModelProperty("审核时间")
|
||||||
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
||||||
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
||||||
|
private Date reviewTime;
|
||||||
|
|
||||||
|
@ApiModelProperty("审核人id")
|
||||||
|
private Long reviewId;
|
||||||
|
|
||||||
|
@ApiModelProperty("审核人")
|
||||||
|
private String review;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long EXECUTE_STATUS;
|
||||||
|
|
||||||
|
@ApiModelProperty( "执行状态 0-无状态 1-未执行 2-已执行 3-已下发")
|
||||||
|
private Long executeStatus;
|
||||||
|
|
||||||
|
@ApiModelProperty("执行时间")
|
||||||
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
||||||
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
||||||
|
private Date executeTime;
|
||||||
|
|
||||||
|
@ApiModelProperty("执行人id")
|
||||||
|
private Long executeId;
|
||||||
|
|
||||||
|
@ApiModelProperty("审核人")
|
||||||
|
private String executor;
|
||||||
|
}
|
||||||
+71
@@ -0,0 +1,71 @@
|
|||||||
|
package com.mhd.oms.domain.businessDocumentOrder.service;
|
||||||
|
|
||||||
|
import com.mhd.oms.domain.businessDocumentOrder.repository.facade.IBusinessDocumentOrderService;
|
||||||
|
import com.mhd.oms.domain.businessDocumentOrder.repository.po.BusinessDocumentOrderPO;
|
||||||
|
import com.mhd.oms.domain.businessDocumentOrder.repository.todo.BusinessDocumentOrderDO;
|
||||||
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
/**
|
||||||
|
* 【请填写功能名称】
|
||||||
|
*
|
||||||
|
* @author gen
|
||||||
|
* @date 2026-01-26
|
||||||
|
*/
|
||||||
|
@Service
|
||||||
|
@Slf4j
|
||||||
|
public class BusinessDocumentOrderDomainService {
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private IBusinessDocumentOrderService businessDocumentOrderService;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 分页查询【请填写功能名称】列表
|
||||||
|
*/
|
||||||
|
public List<BusinessDocumentOrderPO> queryList(BusinessDocumentOrderDO businessDocumentOrderDO) {
|
||||||
|
return businessDocumentOrderService.queryList(businessDocumentOrderDO);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 新增【请填写功能名称】
|
||||||
|
*/
|
||||||
|
public Boolean insert(BusinessDocumentOrderDO businessDocumentOrderDO) {
|
||||||
|
|
||||||
|
return businessDocumentOrderService.insert(businessDocumentOrderDO);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改【请填写功能名称】
|
||||||
|
*/
|
||||||
|
public Boolean update(BusinessDocumentOrderDO businessDocumentOrderDO) {
|
||||||
|
return businessDocumentOrderService.update(businessDocumentOrderDO);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 批量删除【请填写功能名称】
|
||||||
|
*/
|
||||||
|
public Boolean delete(Long[] ids) {
|
||||||
|
return businessDocumentOrderService.delete(ids);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取【请填写功能名称】详细信息
|
||||||
|
*/
|
||||||
|
public BusinessDocumentOrderPO getInfo(Long id)
|
||||||
|
{
|
||||||
|
return businessDocumentOrderService.getInfo(id);
|
||||||
|
}
|
||||||
|
|
||||||
|
public BusinessDocumentOrderPO audit( Long id, Long reviewStatus)
|
||||||
|
{
|
||||||
|
|
||||||
|
return businessDocumentOrderService.audit(id,reviewStatus);
|
||||||
|
}
|
||||||
|
public Boolean execute(Long[] ids) {
|
||||||
|
return businessDocumentOrderService.execute(ids);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,71 @@
|
|||||||
|
package com.mhd.oms.domain.executeOrder.entity;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.IdType;
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableId;
|
||||||
|
import com.mhd.common.core.annotation.Excel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import com.mhd.common.core.web.domain.BaseVOEntity;
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import lombok.Data;
|
||||||
|
import java.util.Date;
|
||||||
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 【请填写功能名称】对象 execute_order
|
||||||
|
*
|
||||||
|
* @author gen
|
||||||
|
* @date 2026-01-27
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class ExecuteOrder extends BaseVOEntity{
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
@TableId(type = IdType.AUTO)
|
||||||
|
private Long id;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String realCreateBy;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String realCreateName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String createCompanyId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsNumber;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String orgName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long organizationId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long businessDocumentId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String businessDocumentNumber;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String organizationName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long topOrganizationId;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
+43
@@ -0,0 +1,43 @@
|
|||||||
|
package com.mhd.oms.domain.executeOrder.repository.facade;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.extension.service.IService;
|
||||||
|
import com.mhd.oms.domain.executeOrder.entity.ExecuteOrder;
|
||||||
|
import com.mhd.oms.domain.executeOrder.repository.po.ExecuteOrderPO;
|
||||||
|
import com.mhd.oms.domain.executeOrder.repository.todo.ExecuteOrderDO;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 【请填写功能名称】Service接口
|
||||||
|
*
|
||||||
|
* @author gen
|
||||||
|
* @date 2026-01-27
|
||||||
|
*/
|
||||||
|
public interface IExecuteOrderService extends IService<ExecuteOrder>
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* 分页查询【请填写功能名称】列表
|
||||||
|
*/
|
||||||
|
public List<ExecuteOrderPO> queryList(ExecuteOrderDO executeOrderDO);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 新增【请填写功能名称】
|
||||||
|
*/
|
||||||
|
public Boolean insert(ExecuteOrderDO executeOrderDO);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改【请填写功能名称】
|
||||||
|
*/
|
||||||
|
public Boolean update(ExecuteOrderDO executeOrderDO);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 批量删除【请填写功能名称】
|
||||||
|
*/
|
||||||
|
public Boolean delete(Long[] ids);
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询【请填写功能名称】
|
||||||
|
*/
|
||||||
|
public ExecuteOrderPO getInfo(Long id);
|
||||||
|
}
|
||||||
+22
@@ -0,0 +1,22 @@
|
|||||||
|
package com.mhd.oms.domain.executeOrder.repository.mapper;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||||
|
import com.mhd.oms.domain.executeOrder.entity.ExecuteOrder;
|
||||||
|
import com.mhd.oms.domain.executeOrder.repository.po.ExecuteOrderPO;
|
||||||
|
import com.mhd.oms.domain.executeOrder.repository.todo.ExecuteOrderDO;
|
||||||
|
import org.apache.ibatis.annotations.Param;
|
||||||
|
/**
|
||||||
|
* 【请填写功能名称】Mapper接口
|
||||||
|
*
|
||||||
|
* @author gen
|
||||||
|
* @date 2026-01-27
|
||||||
|
*/
|
||||||
|
public interface ExecuteOrderMapper extends BaseMapper<ExecuteOrder>
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* 查询【请填写功能名称】列表
|
||||||
|
*/
|
||||||
|
public List<ExecuteOrderPO> queryList(ExecuteOrderDO executeOrderDO);
|
||||||
|
|
||||||
|
}
|
||||||
+81
@@ -0,0 +1,81 @@
|
|||||||
|
package com.mhd.oms.domain.executeOrder.repository.persistence;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||||
|
import com.mhd.oms.domain.executeOrder.entity.ExecuteOrder;
|
||||||
|
import com.mhd.oms.domain.executeOrder.repository.facade.IExecuteOrderService;
|
||||||
|
import com.mhd.oms.domain.executeOrder.repository.mapper.ExecuteOrderMapper;
|
||||||
|
import com.mhd.oms.domain.executeOrder.repository.po.ExecuteOrderPO;
|
||||||
|
import com.mhd.oms.domain.executeOrder.repository.todo.ExecuteOrderDO;
|
||||||
|
import org.springframework.beans.BeanUtils;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 【请填写功能名称】Service业务层处理
|
||||||
|
*
|
||||||
|
* @author gen
|
||||||
|
* @date 2026-01-27
|
||||||
|
*/
|
||||||
|
@Service
|
||||||
|
public class ExecuteOrderImpl extends ServiceImpl<ExecuteOrderMapper, ExecuteOrder> implements IExecuteOrderService{
|
||||||
|
@Autowired
|
||||||
|
private ExecuteOrderMapper executeOrderMapper;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询【请填写功能名称】列表
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public List<ExecuteOrderPO> queryList(ExecuteOrderDO executeOrderDO)
|
||||||
|
{
|
||||||
|
return executeOrderMapper.queryList(executeOrderDO);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 新增【请填写功能名称】
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public Boolean insert(ExecuteOrderDO executeOrderDO) {
|
||||||
|
ExecuteOrder executeOrder = new ExecuteOrder();
|
||||||
|
BeanUtils.copyProperties(executeOrderDO,executeOrder);
|
||||||
|
return this.save(executeOrder);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改【请填写功能名称】
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public Boolean update(ExecuteOrderDO executeOrderDO) {
|
||||||
|
ExecuteOrder executeOrder = new ExecuteOrder();
|
||||||
|
BeanUtils.copyProperties(executeOrderDO,executeOrder);
|
||||||
|
return this.updateById(executeOrder);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 批量删除【请填写功能名称】
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public Boolean delete(Long[] ids ) {
|
||||||
|
List<ExecuteOrder> list = new ArrayList<>();
|
||||||
|
for (Long id : ids) {
|
||||||
|
ExecuteOrder executeOrder = new ExecuteOrder();
|
||||||
|
executeOrder.setId(id);
|
||||||
|
executeOrder.setDelFlag(2);
|
||||||
|
list.add(executeOrder);
|
||||||
|
}
|
||||||
|
return this.updateBatchById(list);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改【请填写功能名称】
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public ExecuteOrderPO getInfo(Long id) {
|
||||||
|
ExecuteOrder executeOrder = this.getById(id);
|
||||||
|
ExecuteOrderPO executeOrderPO = new ExecuteOrderPO();
|
||||||
|
BeanUtils.copyProperties(executeOrder,executeOrderPO);
|
||||||
|
return executeOrderPO;
|
||||||
|
}
|
||||||
|
}
|
||||||
+71
@@ -0,0 +1,71 @@
|
|||||||
|
package com.mhd.oms.domain.executeOrder.repository.po;
|
||||||
|
|
||||||
|
import com.mhd.common.core.annotation.Excel;
|
||||||
|
import lombok.Data;
|
||||||
|
import java.util.Date;
|
||||||
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import com.mhd.common.core.web.domain.BaseVOEntity;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 【请填写功能名称】对象 execute_order
|
||||||
|
*
|
||||||
|
* @author gen
|
||||||
|
* @date 2026-01-27
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Data
|
||||||
|
@ApiModel(value = "【请填写功能名称】对象", description = "【请填写功能名称】响应对象")
|
||||||
|
public class ExecuteOrderPO extends BaseVOEntity{
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long id;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String realCreateBy;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String realCreateName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String createCompanyId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsNumber;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String orgName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long organizationId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long businessDocumentId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String businessDocumentNumber;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String organizationName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long topOrganizationId;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
+74
@@ -0,0 +1,74 @@
|
|||||||
|
package com.mhd.oms.domain.executeOrder.repository.todo;
|
||||||
|
|
||||||
|
import com.mhd.common.core.annotation.Excel;
|
||||||
|
import lombok.Data;
|
||||||
|
import java.util.Date;
|
||||||
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import com.mhd.common.core.web.domain.BaseVOEntity;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 【请填写功能名称】对象 execute_order
|
||||||
|
*
|
||||||
|
* @author gen
|
||||||
|
* @date 2026-01-27
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class ExecuteOrderDO extends BaseVOEntity{
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long id;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String realCreateBy;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String realCreateName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String createCompanyId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsNumber;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String orgName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long organizationId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long businessDocumentId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String businessDocumentNumber;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String organizationName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long topOrganizationId;
|
||||||
|
|
||||||
|
@ApiModelProperty(name = "组织ID集合")
|
||||||
|
private List<Long> organizationIdList;
|
||||||
|
|
||||||
|
@ApiModelProperty(name = "权限菜单ID")
|
||||||
|
private Long permissionMenuId;
|
||||||
|
}
|
||||||
+64
@@ -0,0 +1,64 @@
|
|||||||
|
package com.mhd.oms.domain.executeOrder.service;
|
||||||
|
|
||||||
|
import com.mhd.oms.domain.executeOrder.repository.facade.IExecuteOrderService;
|
||||||
|
import com.mhd.oms.domain.executeOrder.repository.po.ExecuteOrderPO;
|
||||||
|
import com.mhd.oms.domain.executeOrder.repository.todo.ExecuteOrderDO;
|
||||||
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
/**
|
||||||
|
* 【请填写功能名称】
|
||||||
|
*
|
||||||
|
* @author gen
|
||||||
|
* @date 2026-01-27
|
||||||
|
*/
|
||||||
|
@Service
|
||||||
|
@Slf4j
|
||||||
|
public class ExecuteOrderDomainService {
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private IExecuteOrderService executeOrderService;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 分页查询【请填写功能名称】列表
|
||||||
|
*/
|
||||||
|
public List<ExecuteOrderPO> queryList(ExecuteOrderDO executeOrderDO) {
|
||||||
|
return executeOrderService.queryList(executeOrderDO);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 新增【请填写功能名称】
|
||||||
|
*/
|
||||||
|
public Boolean insert(ExecuteOrderDO executeOrderDO) {
|
||||||
|
|
||||||
|
return executeOrderService.insert(executeOrderDO);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改【请填写功能名称】
|
||||||
|
*/
|
||||||
|
public Boolean update(ExecuteOrderDO executeOrderDO) {
|
||||||
|
return executeOrderService.update(executeOrderDO);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 批量删除【请填写功能名称】
|
||||||
|
*/
|
||||||
|
public Boolean delete(Long[] ids) {
|
||||||
|
return executeOrderService.delete(ids);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取【请填写功能名称】详细信息
|
||||||
|
*/
|
||||||
|
public ExecuteOrderPO getInfo(Long id)
|
||||||
|
{
|
||||||
|
return executeOrderService.getInfo(id);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
+65
@@ -0,0 +1,65 @@
|
|||||||
|
package com.mhd.oms.interfaces.assembler.businessDocumentAddressMulti;
|
||||||
|
|
||||||
|
import cn.hutool.core.util.ObjectUtil;
|
||||||
|
import com.mhd.oms.domain.businessDocumentAddressMulti.repository.todo.BusinessDocumentAddressMultiDO;
|
||||||
|
import com.mhd.oms.interfaces.dto.businessDocumentAddressMulti.BusinessDocumentAddressMultiDTO;
|
||||||
|
import com.mhd.common.core.exception.digitalLogisticsException.DigitalLogisticsException;
|
||||||
|
import com.mhd.common.core.exception.digitalLogisticsException.UserError;
|
||||||
|
import com.mhd.common.core.utils.bean.BeanUtils;
|
||||||
|
import com.mhd.common.core.utils.IgnoreNullUtil;
|
||||||
|
import com.mhd.common.security.utils.SecurityUtils;
|
||||||
|
import com.mhd.system.api.model.LoginUser;
|
||||||
|
import org.springframework.stereotype.Component;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 【请填写功能名称】Assembler
|
||||||
|
*
|
||||||
|
* @author gen
|
||||||
|
* @date 2026-01-26
|
||||||
|
*/
|
||||||
|
@Component
|
||||||
|
public class BusinessDocumentAddressMultiAssembler {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 转换实体
|
||||||
|
*/
|
||||||
|
public BusinessDocumentAddressMultiDO toDO(BusinessDocumentAddressMultiDTO businessDocumentAddressMultiDTO) {
|
||||||
|
BusinessDocumentAddressMultiDO businessDocumentAddressMultiDO = new BusinessDocumentAddressMultiDO();
|
||||||
|
// 拷贝
|
||||||
|
BeanUtils.copyProperties(businessDocumentAddressMultiDTO, businessDocumentAddressMultiDO, IgnoreNullUtil.getNullPropertyNames(businessDocumentAddressMultiDTO));
|
||||||
|
LoginUser loginUser = SecurityUtils.getLoginUser();
|
||||||
|
if (ObjectUtil.isNull(loginUser)) {
|
||||||
|
throw new DigitalLogisticsException(UserError.TIMEOUT);
|
||||||
|
}
|
||||||
|
String userName = loginUser.getUsername();
|
||||||
|
// 获取登录人id
|
||||||
|
Long userId = loginUser.getUserid();
|
||||||
|
if(businessDocumentAddressMultiDTO.getId() != null){
|
||||||
|
if(userId != null){
|
||||||
|
businessDocumentAddressMultiDO.setUpdateBy(userId);
|
||||||
|
}else {
|
||||||
|
businessDocumentAddressMultiDO.setUpdateBy(new Long("0"));
|
||||||
|
}
|
||||||
|
businessDocumentAddressMultiDO.setUpdateByName(userName);
|
||||||
|
businessDocumentAddressMultiDO.setUpdateTime(new Date());
|
||||||
|
|
||||||
|
}else {
|
||||||
|
if(userId != null){
|
||||||
|
businessDocumentAddressMultiDO.setCreateBy(userId);
|
||||||
|
businessDocumentAddressMultiDO.setUpdateBy(userId);
|
||||||
|
}else {
|
||||||
|
businessDocumentAddressMultiDO.setCreateBy(new Long("0"));
|
||||||
|
businessDocumentAddressMultiDO.setUpdateBy(new Long("0"));
|
||||||
|
}
|
||||||
|
businessDocumentAddressMultiDO.setCreateByName(userName);
|
||||||
|
businessDocumentAddressMultiDO.setUpdateByName(userName);
|
||||||
|
businessDocumentAddressMultiDO.setCreateTime(new Date());
|
||||||
|
businessDocumentAddressMultiDO.setUpdateTime(new Date());
|
||||||
|
businessDocumentAddressMultiDO.setDelFlag(1);
|
||||||
|
}
|
||||||
|
return businessDocumentAddressMultiDO;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
+65
@@ -0,0 +1,65 @@
|
|||||||
|
package com.mhd.oms.interfaces.assembler.businessDocumentCargoMulti;
|
||||||
|
|
||||||
|
import cn.hutool.core.util.ObjectUtil;
|
||||||
|
import com.mhd.oms.domain.businessDocumentCargoMulti.repository.todo.BusinessDocumentCargoMultiDO;
|
||||||
|
import com.mhd.oms.interfaces.dto.businessDocumentCargoMulti.BusinessDocumentCargoMultiDTO;
|
||||||
|
import com.mhd.common.core.exception.digitalLogisticsException.DigitalLogisticsException;
|
||||||
|
import com.mhd.common.core.exception.digitalLogisticsException.UserError;
|
||||||
|
import com.mhd.common.core.utils.bean.BeanUtils;
|
||||||
|
import com.mhd.common.core.utils.IgnoreNullUtil;
|
||||||
|
import com.mhd.common.security.utils.SecurityUtils;
|
||||||
|
import com.mhd.system.api.model.LoginUser;
|
||||||
|
import org.springframework.stereotype.Component;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 【请填写功能名称】Assembler
|
||||||
|
*
|
||||||
|
* @author gen
|
||||||
|
* @date 2026-01-26
|
||||||
|
*/
|
||||||
|
@Component
|
||||||
|
public class BusinessDocumentCargoMultiAssembler {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 转换实体
|
||||||
|
*/
|
||||||
|
public BusinessDocumentCargoMultiDO toDO(BusinessDocumentCargoMultiDTO businessDocumentCargoMultiDTO) {
|
||||||
|
BusinessDocumentCargoMultiDO businessDocumentCargoMultiDO = new BusinessDocumentCargoMultiDO();
|
||||||
|
// 拷贝
|
||||||
|
BeanUtils.copyProperties(businessDocumentCargoMultiDTO, businessDocumentCargoMultiDO, IgnoreNullUtil.getNullPropertyNames(businessDocumentCargoMultiDTO));
|
||||||
|
LoginUser loginUser = SecurityUtils.getLoginUser();
|
||||||
|
if (ObjectUtil.isNull(loginUser)) {
|
||||||
|
throw new DigitalLogisticsException(UserError.TIMEOUT);
|
||||||
|
}
|
||||||
|
String userName = loginUser.getUsername();
|
||||||
|
// 获取登录人id
|
||||||
|
Long userId = loginUser.getUserid();
|
||||||
|
if(businessDocumentCargoMultiDTO.getId() != null){
|
||||||
|
if(userId != null){
|
||||||
|
businessDocumentCargoMultiDO.setUpdateBy(userId);
|
||||||
|
}else {
|
||||||
|
businessDocumentCargoMultiDO.setUpdateBy(new Long("0"));
|
||||||
|
}
|
||||||
|
businessDocumentCargoMultiDO.setUpdateByName(userName);
|
||||||
|
businessDocumentCargoMultiDO.setUpdateTime(new Date());
|
||||||
|
|
||||||
|
}else {
|
||||||
|
if(userId != null){
|
||||||
|
businessDocumentCargoMultiDO.setCreateBy(userId);
|
||||||
|
businessDocumentCargoMultiDO.setUpdateBy(userId);
|
||||||
|
}else {
|
||||||
|
businessDocumentCargoMultiDO.setCreateBy(new Long("0"));
|
||||||
|
businessDocumentCargoMultiDO.setUpdateBy(new Long("0"));
|
||||||
|
}
|
||||||
|
businessDocumentCargoMultiDO.setCreateByName(userName);
|
||||||
|
businessDocumentCargoMultiDO.setUpdateByName(userName);
|
||||||
|
businessDocumentCargoMultiDO.setCreateTime(new Date());
|
||||||
|
businessDocumentCargoMultiDO.setUpdateTime(new Date());
|
||||||
|
businessDocumentCargoMultiDO.setDelFlag(1);
|
||||||
|
}
|
||||||
|
return businessDocumentCargoMultiDO;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
+65
@@ -0,0 +1,65 @@
|
|||||||
|
package com.mhd.oms.interfaces.assembler.businessDocumentOrder;
|
||||||
|
|
||||||
|
import cn.hutool.core.util.ObjectUtil;
|
||||||
|
import com.mhd.oms.domain.businessDocumentOrder.repository.todo.BusinessDocumentOrderDO;
|
||||||
|
import com.mhd.oms.interfaces.dto.businessDocumentOrder.BusinessDocumentOrderDTO;
|
||||||
|
import com.mhd.common.core.exception.digitalLogisticsException.DigitalLogisticsException;
|
||||||
|
import com.mhd.common.core.exception.digitalLogisticsException.UserError;
|
||||||
|
import com.mhd.common.core.utils.bean.BeanUtils;
|
||||||
|
import com.mhd.common.core.utils.IgnoreNullUtil;
|
||||||
|
import com.mhd.common.security.utils.SecurityUtils;
|
||||||
|
import com.mhd.system.api.model.LoginUser;
|
||||||
|
import org.springframework.stereotype.Component;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 【请填写功能名称】Assembler
|
||||||
|
*
|
||||||
|
* @author gen
|
||||||
|
* @date 2026-01-26
|
||||||
|
*/
|
||||||
|
@Component
|
||||||
|
public class BusinessDocumentOrderAssembler {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 转换实体
|
||||||
|
*/
|
||||||
|
public BusinessDocumentOrderDO toDO(BusinessDocumentOrderDTO businessDocumentOrderDTO) {
|
||||||
|
BusinessDocumentOrderDO businessDocumentOrderDO = new BusinessDocumentOrderDO();
|
||||||
|
// 拷贝
|
||||||
|
BeanUtils.copyProperties(businessDocumentOrderDTO, businessDocumentOrderDO, IgnoreNullUtil.getNullPropertyNames(businessDocumentOrderDTO));
|
||||||
|
LoginUser loginUser = SecurityUtils.getLoginUser();
|
||||||
|
if (ObjectUtil.isNull(loginUser)) {
|
||||||
|
throw new DigitalLogisticsException(UserError.TIMEOUT);
|
||||||
|
}
|
||||||
|
String userName = loginUser.getUsername();
|
||||||
|
// 获取登录人id
|
||||||
|
Long userId = loginUser.getUserid();
|
||||||
|
if(businessDocumentOrderDTO.getId() != null){
|
||||||
|
if(userId != null){
|
||||||
|
businessDocumentOrderDO.setUpdateBy(userId);
|
||||||
|
}else {
|
||||||
|
businessDocumentOrderDO.setUpdateBy(new Long("0"));
|
||||||
|
}
|
||||||
|
businessDocumentOrderDO.setUpdateByName(userName);
|
||||||
|
businessDocumentOrderDO.setUpdateTime(new Date());
|
||||||
|
|
||||||
|
}else {
|
||||||
|
if(userId != null){
|
||||||
|
businessDocumentOrderDO.setCreateBy(userId);
|
||||||
|
businessDocumentOrderDO.setUpdateBy(userId);
|
||||||
|
}else {
|
||||||
|
businessDocumentOrderDO.setCreateBy(new Long("0"));
|
||||||
|
businessDocumentOrderDO.setUpdateBy(new Long("0"));
|
||||||
|
}
|
||||||
|
businessDocumentOrderDO.setCreateByName(userName);
|
||||||
|
businessDocumentOrderDO.setUpdateByName(userName);
|
||||||
|
businessDocumentOrderDO.setCreateTime(new Date());
|
||||||
|
businessDocumentOrderDO.setUpdateTime(new Date());
|
||||||
|
businessDocumentOrderDO.setDelFlag(1);
|
||||||
|
}
|
||||||
|
return businessDocumentOrderDO;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
+65
@@ -0,0 +1,65 @@
|
|||||||
|
package com.mhd.oms.interfaces.assembler.executeOrder;
|
||||||
|
|
||||||
|
import cn.hutool.core.util.ObjectUtil;
|
||||||
|
import com.mhd.oms.domain.executeOrder.repository.todo.ExecuteOrderDO;
|
||||||
|
import com.mhd.oms.interfaces.dto.executeOrder.ExecuteOrderDTO;
|
||||||
|
import com.mhd.common.core.exception.digitalLogisticsException.DigitalLogisticsException;
|
||||||
|
import com.mhd.common.core.exception.digitalLogisticsException.UserError;
|
||||||
|
import com.mhd.common.core.utils.bean.BeanUtils;
|
||||||
|
import com.mhd.common.core.utils.IgnoreNullUtil;
|
||||||
|
import com.mhd.common.security.utils.SecurityUtils;
|
||||||
|
import com.mhd.system.api.model.LoginUser;
|
||||||
|
import org.springframework.stereotype.Component;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 【请填写功能名称】Assembler
|
||||||
|
*
|
||||||
|
* @author gen
|
||||||
|
* @date 2026-01-27
|
||||||
|
*/
|
||||||
|
@Component
|
||||||
|
public class ExecuteOrderAssembler {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 转换实体
|
||||||
|
*/
|
||||||
|
public ExecuteOrderDO toDO(ExecuteOrderDTO executeOrderDTO) {
|
||||||
|
ExecuteOrderDO executeOrderDO = new ExecuteOrderDO();
|
||||||
|
// 拷贝
|
||||||
|
BeanUtils.copyProperties(executeOrderDTO, executeOrderDO, IgnoreNullUtil.getNullPropertyNames(executeOrderDTO));
|
||||||
|
LoginUser loginUser = SecurityUtils.getLoginUser();
|
||||||
|
if (ObjectUtil.isNull(loginUser)) {
|
||||||
|
throw new DigitalLogisticsException(UserError.TIMEOUT);
|
||||||
|
}
|
||||||
|
String userName = loginUser.getUsername();
|
||||||
|
// 获取登录人id
|
||||||
|
Long userId = loginUser.getUserid();
|
||||||
|
if(executeOrderDTO.getId() != null){
|
||||||
|
if(userId != null){
|
||||||
|
executeOrderDO.setUpdateBy(userId);
|
||||||
|
}else {
|
||||||
|
executeOrderDO.setUpdateBy(new Long("0"));
|
||||||
|
}
|
||||||
|
executeOrderDO.setUpdateByName(userName);
|
||||||
|
executeOrderDO.setUpdateTime(new Date());
|
||||||
|
|
||||||
|
}else {
|
||||||
|
if(userId != null){
|
||||||
|
executeOrderDO.setCreateBy(userId);
|
||||||
|
executeOrderDO.setUpdateBy(userId);
|
||||||
|
}else {
|
||||||
|
executeOrderDO.setCreateBy(new Long("0"));
|
||||||
|
executeOrderDO.setUpdateBy(new Long("0"));
|
||||||
|
}
|
||||||
|
executeOrderDO.setCreateByName(userName);
|
||||||
|
executeOrderDO.setUpdateByName(userName);
|
||||||
|
executeOrderDO.setCreateTime(new Date());
|
||||||
|
executeOrderDO.setUpdateTime(new Date());
|
||||||
|
executeOrderDO.setDelFlag(1);
|
||||||
|
}
|
||||||
|
return executeOrderDO;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
+102
@@ -0,0 +1,102 @@
|
|||||||
|
package com.mhd.oms.interfaces.dto.businessDocumentAddressMulti;
|
||||||
|
|
||||||
|
import com.mhd.common.core.annotation.Excel;
|
||||||
|
import lombok.Data;
|
||||||
|
import java.util.Date;
|
||||||
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import com.mhd.common.core.web.domain.BaseVOEntity;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 【请填写功能名称】对象 business_document_address_multi
|
||||||
|
*
|
||||||
|
* @author gen
|
||||||
|
* @date 2026-01-26
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class BusinessDocumentAddressMultiDTO extends BaseVOEntity{
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long id;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long organizationId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String organizationName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long topOrganizationId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String orderId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String areaCode;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String areaName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String address;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String longitude;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String latitude;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String contactName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String contactPhone;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Date layDate;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String layTime;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String layTimeId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long layType;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long sort;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String shortName;
|
||||||
|
|
||||||
|
|
||||||
|
@ApiModelProperty(name = "组织ID集合")
|
||||||
|
private List<Long> organizationIdList;
|
||||||
|
|
||||||
|
@ApiModelProperty(name = "权限菜单ID")
|
||||||
|
private Long permissionMenuId;
|
||||||
|
}
|
||||||
+70
@@ -0,0 +1,70 @@
|
|||||||
|
package com.mhd.oms.interfaces.dto.businessDocumentCargoMulti;
|
||||||
|
|
||||||
|
import com.mhd.common.core.annotation.Excel;
|
||||||
|
import lombok.Data;
|
||||||
|
import java.util.Date;
|
||||||
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import com.mhd.common.core.web.domain.BaseVOEntity;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 【请填写功能名称】对象 business_document_cargo_multi
|
||||||
|
*
|
||||||
|
* @author gen
|
||||||
|
* @date 2026-01-26
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class BusinessDocumentCargoMultiDTO extends BaseVOEntity{
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long id;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long organizationId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String organizationName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long topOrganizationId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String layInfoId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsTypeId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsType;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsNameId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal cargoWeight;
|
||||||
|
|
||||||
|
|
||||||
|
@ApiModelProperty(name = "组织ID集合")
|
||||||
|
private List<Long> organizationIdList;
|
||||||
|
|
||||||
|
@ApiModelProperty(name = "权限菜单ID")
|
||||||
|
private Long permissionMenuId;
|
||||||
|
}
|
||||||
+699
@@ -0,0 +1,699 @@
|
|||||||
|
package com.mhd.oms.interfaces.dto.businessDocumentOrder;
|
||||||
|
|
||||||
|
import com.mhd.common.core.annotation.Excel;
|
||||||
|
import lombok.Data;
|
||||||
|
import java.util.Date;
|
||||||
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import com.mhd.common.core.web.domain.BaseVOEntity;
|
||||||
|
import org.springframework.format.annotation.DateTimeFormat;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 【请填写功能名称】对象 business_document_order
|
||||||
|
*
|
||||||
|
* @author gen
|
||||||
|
* @date 2026-01-26
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class BusinessDocumentOrderDTO extends BaseVOEntity{
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long id;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String realCreateBy;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String realCreateName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String createCompanyId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsNumber;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String loadingAreaId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String loadingName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String loadingAddress;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String loadingLongitude;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String loadingLatitude;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String loadingUnit;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String freighterName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String loadingPhone;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Date loadingDate;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String unloadAreaId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String unloadName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String unloadAddress;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String unloadLongitude;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String unloadLatitude;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String dischargerName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String unloadPhone;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Date unloadingData;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsTypeId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsType;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsNameId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal weightMin;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal weightMax;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsUntisId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsUntis;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long transportationModeId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String transportationName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String carType;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String carTypeName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String serviceRequireId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String serviceRequire;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String remarks;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long waybillFrom;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long isSource;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Date sourceCloseTime;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String executorId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long isDelete;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String lineTitleLeft;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String lineTitleRight;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String sysOrgCode;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long isCommon;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsTypeMajor;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long auditStatus;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long waybillMode;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Date latestBiddingTime;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal deliveryFreight;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal collectedFreight;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal uncollectedFreight;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal collectLessFreight;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String auditBy;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Date auditTime;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String businessType;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal transportationUnitPrice;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long radioValue;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String createrName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String createrPhone;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long isElectricFence;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String wxaQrcode;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String appointShipperId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String createUserId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String appointShipper;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long isStatus;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String signatureAddress;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String qrCodeImgUrl;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String shippingNote;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long receivableType;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String thirdPartyOrderNumber;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String dispatchOrderNumber;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String appointDriverEnterpriseId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String appointDriverEnterprise;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String cancelOrderRemark;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String orderDriverId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal goodsQuantity;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsQuantityUnitId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsQuantityUnit;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String biddingUnit;
|
||||||
|
|
||||||
|
@ApiModelProperty("业务单状态 0-待审核 1-待执行 2-进行中 3-已完成 4-已取消 5-已拦截")
|
||||||
|
private Long orderStatus;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long splicingOrderType;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long splicingStatus;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String mainOrderId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String mainOrderNum;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String mergeOrderId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String mergeOrderNum;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long payerType;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String machineNumber;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long stockFlag;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal infoFee;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long infoFeePayeeType;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String infoFeePayee;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long infoFeeStatus;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String infoFeeDocumentNumber;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long orderShippingType;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String recipientId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String recipientName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long settlementStatus;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Date settlementTime;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Date paymentTime;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String reconciliationInnerNumber;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String receivePaymentNumber;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String invoiceId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long isInvoice;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String vehicleTypeId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String vehicleTypeName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String carrier;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String carrierName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long szwlUserId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal freightUnitPrice;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long biddingStatus;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String biddingRemarks;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal cargoInsuranceAmount;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String destination;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal freightCharges;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String payer;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String salesmanId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long isDeclare;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String route;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String containerType;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String containerTypeName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String cardType;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String cardTypeName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String externalContainerNo;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String transitPlace;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String shipper;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String customsShipper;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String customsShipperTel;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String unloadingCompany;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String contractNo;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal freightFee;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal unloadingFee;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal customsFee;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal shortageFee;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal miscellaneousFee;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal otherFee;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal detentionFee;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal taxRate;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String settlementCurrency;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private BigDecimal volume;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String detailContent;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String customsRoute;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String customsPort;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String customsContact;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String customsContactPhone;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String customsRemark;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String orgId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsCategory;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String makerCodeNc;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String salesmanCodeNc;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String customerCodeNc;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String salesmanName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String orgName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long organizationId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String organizationName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long topOrganizationId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Date documentDate;
|
||||||
|
|
||||||
|
|
||||||
|
@ApiModelProperty(name = "组织ID集合")
|
||||||
|
private List<Long> organizationIdList;
|
||||||
|
|
||||||
|
@ApiModelProperty(name = "权限菜单ID")
|
||||||
|
private Long permissionMenuId;
|
||||||
|
|
||||||
|
@ApiModelProperty( "审核状态 0-未审核 1-审核通过 2-已驳回")
|
||||||
|
private Long reviewStatus;
|
||||||
|
|
||||||
|
@ApiModelProperty("审核时间")
|
||||||
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
||||||
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
||||||
|
private Date reviewTime;
|
||||||
|
|
||||||
|
@ApiModelProperty("审核人id")
|
||||||
|
private Long reviewId;
|
||||||
|
|
||||||
|
@ApiModelProperty("审核人")
|
||||||
|
private String review;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long EXECUTE_STATUS;
|
||||||
|
|
||||||
|
@ApiModelProperty( "执行状态 0-无状态 1-未执行 2-已执行 3-已下发")
|
||||||
|
private Long executeStatus;
|
||||||
|
|
||||||
|
@ApiModelProperty("执行时间")
|
||||||
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
||||||
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
||||||
|
private Date executeTime;
|
||||||
|
|
||||||
|
@ApiModelProperty("执行人id")
|
||||||
|
private Long executeId;
|
||||||
|
|
||||||
|
@ApiModelProperty("审核人")
|
||||||
|
private String executor;
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,74 @@
|
|||||||
|
package com.mhd.oms.interfaces.dto.executeOrder;
|
||||||
|
|
||||||
|
import com.mhd.common.core.annotation.Excel;
|
||||||
|
import lombok.Data;
|
||||||
|
import java.util.Date;
|
||||||
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import com.mhd.common.core.web.domain.BaseVOEntity;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 【请填写功能名称】对象 execute_order
|
||||||
|
*
|
||||||
|
* @author gen
|
||||||
|
* @date 2026-01-27
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class ExecuteOrderDTO extends BaseVOEntity{
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long id;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String realCreateBy;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String realCreateName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String createCompanyId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String goodsNumber;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String orgName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long organizationId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long businessDocumentId;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String businessDocumentNumber;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private String organizationName;
|
||||||
|
|
||||||
|
@ApiModelProperty("$column.columnComment")
|
||||||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||||
|
private Long topOrganizationId;
|
||||||
|
|
||||||
|
|
||||||
|
@ApiModelProperty(name = "组织ID集合")
|
||||||
|
private List<Long> organizationIdList;
|
||||||
|
|
||||||
|
@ApiModelProperty(name = "权限菜单ID")
|
||||||
|
private Long permissionMenuId;
|
||||||
|
}
|
||||||
+99
@@ -0,0 +1,99 @@
|
|||||||
|
package com.mhd.oms.interfaces.facade.businessDocumentAddressMulti;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiOperation;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.web.bind.annotation.GetMapping;
|
||||||
|
import org.springframework.web.bind.annotation.PostMapping;
|
||||||
|
import org.springframework.web.bind.annotation.DeleteMapping;
|
||||||
|
import org.springframework.web.bind.annotation.PathVariable;
|
||||||
|
import org.springframework.web.bind.annotation.RequestBody;
|
||||||
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
import com.mhd.oms.interfaces.dto.businessDocumentAddressMulti.BusinessDocumentAddressMultiDTO;
|
||||||
|
import com.mhd.oms.domain.businessDocumentAddressMulti.repository.todo.BusinessDocumentAddressMultiDO;
|
||||||
|
import com.mhd.oms.domain.businessDocumentAddressMulti.repository.po.BusinessDocumentAddressMultiPO;
|
||||||
|
import com.mhd.oms.application.service.businessDocumentAddressMulti.BusinessDocumentAddressMultiApplicationService;
|
||||||
|
import com.mhd.oms.interfaces.assembler.businessDocumentAddressMulti.BusinessDocumentAddressMultiAssembler;
|
||||||
|
import javax.annotation.Resource;
|
||||||
|
import com.mhd.common.core.web.controller.BaseController;
|
||||||
|
import com.mhd.common.core.web.domain.AjaxResult;
|
||||||
|
import com.mhd.common.core.web.page.TableDataInfo;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 【业务单地址信息】Api
|
||||||
|
*
|
||||||
|
* @author gen
|
||||||
|
* @date 2026-01-26
|
||||||
|
*/
|
||||||
|
@RestController
|
||||||
|
@RequestMapping("/businessDocumentAddressMultiApi")
|
||||||
|
public class BusinessDocumentAddressMultiApi extends BaseController{
|
||||||
|
@Autowired
|
||||||
|
private BusinessDocumentAddressMultiApplicationService businessDocumentAddressMultiApplicationService;
|
||||||
|
|
||||||
|
@Resource
|
||||||
|
private BusinessDocumentAddressMultiAssembler businessDocumentAddressMultiAssembler;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 分页查询【业务单地址信息】列表
|
||||||
|
*/
|
||||||
|
@ApiOperation("查询【业务单地址信息】列表")
|
||||||
|
@GetMapping("/list")
|
||||||
|
public TableDataInfo list(BusinessDocumentAddressMultiDTO businessDocumentAddressMultiDTO)
|
||||||
|
{
|
||||||
|
//转换实体
|
||||||
|
BusinessDocumentAddressMultiDO businessDocumentAddressMultiDO = businessDocumentAddressMultiAssembler.toDO(businessDocumentAddressMultiDTO);
|
||||||
|
startPage();
|
||||||
|
List<BusinessDocumentAddressMultiPO> list = businessDocumentAddressMultiApplicationService.queryList(businessDocumentAddressMultiDO);
|
||||||
|
return getDataTable(list);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 编辑【业务单地址信息】
|
||||||
|
*/
|
||||||
|
@ApiOperation("编辑【业务单地址信息】")
|
||||||
|
@PostMapping("/edit")
|
||||||
|
public AjaxResult edit(@RequestBody BusinessDocumentAddressMultiDTO businessDocumentAddressMultiDTO)
|
||||||
|
{
|
||||||
|
//转换实体
|
||||||
|
BusinessDocumentAddressMultiDO businessDocumentAddressMultiDO = businessDocumentAddressMultiAssembler.toDO(businessDocumentAddressMultiDTO);
|
||||||
|
if(businessDocumentAddressMultiDTO.getId() != null){
|
||||||
|
return toAjax(businessDocumentAddressMultiApplicationService.update(businessDocumentAddressMultiDO));
|
||||||
|
}else {
|
||||||
|
return toAjax(businessDocumentAddressMultiApplicationService.insert(businessDocumentAddressMultiDO));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 批量删除【业务单地址信息】
|
||||||
|
*/
|
||||||
|
@ApiOperation("批量删除【业务单地址信息】")
|
||||||
|
@DeleteMapping("/deleteByIds/{ids}")
|
||||||
|
public AjaxResult delete(@PathVariable Long[] ids)
|
||||||
|
{
|
||||||
|
return toAjax(businessDocumentAddressMultiApplicationService.delete(ids));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取【业务单地址信息】详细信息
|
||||||
|
*/
|
||||||
|
@ApiOperation("获取【业务单地址信息】")
|
||||||
|
@GetMapping(value = "/getInfo/{id}")
|
||||||
|
public AjaxResult getInfo(@PathVariable("id") Long id)
|
||||||
|
{
|
||||||
|
return AjaxResult.success(businessDocumentAddressMultiApplicationService.getInfo(id));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
+99
@@ -0,0 +1,99 @@
|
|||||||
|
package com.mhd.oms.interfaces.facade.businessDocumentCargoMulti;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiOperation;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.web.bind.annotation.GetMapping;
|
||||||
|
import org.springframework.web.bind.annotation.PostMapping;
|
||||||
|
import org.springframework.web.bind.annotation.DeleteMapping;
|
||||||
|
import org.springframework.web.bind.annotation.PathVariable;
|
||||||
|
import org.springframework.web.bind.annotation.RequestBody;
|
||||||
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
import com.mhd.oms.interfaces.dto.businessDocumentCargoMulti.BusinessDocumentCargoMultiDTO;
|
||||||
|
import com.mhd.oms.domain.businessDocumentCargoMulti.repository.todo.BusinessDocumentCargoMultiDO;
|
||||||
|
import com.mhd.oms.domain.businessDocumentCargoMulti.repository.po.BusinessDocumentCargoMultiPO;
|
||||||
|
import com.mhd.oms.application.service.businessDocumentCargoMulti.BusinessDocumentCargoMultiApplicationService;
|
||||||
|
import com.mhd.oms.interfaces.assembler.businessDocumentCargoMulti.BusinessDocumentCargoMultiAssembler;
|
||||||
|
import javax.annotation.Resource;
|
||||||
|
import com.mhd.common.core.web.controller.BaseController;
|
||||||
|
import com.mhd.common.core.web.domain.AjaxResult;
|
||||||
|
import com.mhd.common.core.web.page.TableDataInfo;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 【业务单货物信息】Api
|
||||||
|
*
|
||||||
|
* @author gen
|
||||||
|
* @date 2026-01-26
|
||||||
|
*/
|
||||||
|
@RestController
|
||||||
|
@RequestMapping("/businessDocumentCargoMultiApi")
|
||||||
|
public class BusinessDocumentCargoMultiApi extends BaseController{
|
||||||
|
@Autowired
|
||||||
|
private BusinessDocumentCargoMultiApplicationService businessDocumentCargoMultiApplicationService;
|
||||||
|
|
||||||
|
@Resource
|
||||||
|
private BusinessDocumentCargoMultiAssembler businessDocumentCargoMultiAssembler;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 分页查询【业务单货物信息】列表
|
||||||
|
*/
|
||||||
|
@ApiOperation("查询【业务单货物信息】列表")
|
||||||
|
@GetMapping("/list")
|
||||||
|
public TableDataInfo list(BusinessDocumentCargoMultiDTO businessDocumentCargoMultiDTO)
|
||||||
|
{
|
||||||
|
//转换实体
|
||||||
|
BusinessDocumentCargoMultiDO businessDocumentCargoMultiDO = businessDocumentCargoMultiAssembler.toDO(businessDocumentCargoMultiDTO);
|
||||||
|
startPage();
|
||||||
|
List<BusinessDocumentCargoMultiPO> list = businessDocumentCargoMultiApplicationService.queryList(businessDocumentCargoMultiDO);
|
||||||
|
return getDataTable(list);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 编辑【业务单货物信息】
|
||||||
|
*/
|
||||||
|
@ApiOperation("编辑【业务单货物信息】")
|
||||||
|
@PostMapping("/edit")
|
||||||
|
public AjaxResult edit(@RequestBody BusinessDocumentCargoMultiDTO businessDocumentCargoMultiDTO)
|
||||||
|
{
|
||||||
|
//转换实体
|
||||||
|
BusinessDocumentCargoMultiDO businessDocumentCargoMultiDO = businessDocumentCargoMultiAssembler.toDO(businessDocumentCargoMultiDTO);
|
||||||
|
if(businessDocumentCargoMultiDTO.getId() != null){
|
||||||
|
return toAjax(businessDocumentCargoMultiApplicationService.update(businessDocumentCargoMultiDO));
|
||||||
|
}else {
|
||||||
|
return toAjax(businessDocumentCargoMultiApplicationService.insert(businessDocumentCargoMultiDO));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 批量删除【业务单货物信息】
|
||||||
|
*/
|
||||||
|
@ApiOperation("批量删除【业务单货物信息】")
|
||||||
|
@DeleteMapping("/deleteByIds/{ids}")
|
||||||
|
public AjaxResult delete(@PathVariable Long[] ids)
|
||||||
|
{
|
||||||
|
return toAjax(businessDocumentCargoMultiApplicationService.delete(ids));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取【业务单货物信息】详细信息
|
||||||
|
*/
|
||||||
|
@ApiOperation("获取【业务单货物信息】")
|
||||||
|
@GetMapping(value = "/getInfo/{id}")
|
||||||
|
public AjaxResult getInfo(@PathVariable("id") Long id)
|
||||||
|
{
|
||||||
|
return AjaxResult.success(businessDocumentCargoMultiApplicationService.getInfo(id));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
+109
@@ -0,0 +1,109 @@
|
|||||||
|
package com.mhd.oms.interfaces.facade.businessDocumentOrder;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiOperation;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.web.bind.annotation.*;
|
||||||
|
import com.mhd.oms.interfaces.dto.businessDocumentOrder.BusinessDocumentOrderDTO;
|
||||||
|
import com.mhd.oms.domain.businessDocumentOrder.repository.todo.BusinessDocumentOrderDO;
|
||||||
|
import com.mhd.oms.domain.businessDocumentOrder.repository.po.BusinessDocumentOrderPO;
|
||||||
|
import com.mhd.oms.application.service.businessDocumentOrder.BusinessDocumentOrderApplicationService;
|
||||||
|
import com.mhd.oms.interfaces.assembler.businessDocumentOrder.BusinessDocumentOrderAssembler;
|
||||||
|
import javax.annotation.Resource;
|
||||||
|
import com.mhd.common.core.web.controller.BaseController;
|
||||||
|
import com.mhd.common.core.web.domain.AjaxResult;
|
||||||
|
import com.mhd.common.core.web.page.TableDataInfo;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 【业务单】Api
|
||||||
|
*
|
||||||
|
* @author gen
|
||||||
|
* @date 2026-01-26
|
||||||
|
*/
|
||||||
|
@RestController
|
||||||
|
@RequestMapping("/businessDocumentOrderApi")
|
||||||
|
public class BusinessDocumentOrderApi extends BaseController{
|
||||||
|
@Autowired
|
||||||
|
private BusinessDocumentOrderApplicationService businessDocumentOrderApplicationService;
|
||||||
|
|
||||||
|
@Resource
|
||||||
|
private BusinessDocumentOrderAssembler businessDocumentOrderAssembler;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 分页查询【业务单】列表
|
||||||
|
*/
|
||||||
|
@ApiOperation("查询【业务单】列表")
|
||||||
|
@GetMapping("/list")
|
||||||
|
public TableDataInfo list(BusinessDocumentOrderDTO businessDocumentOrderDTO)
|
||||||
|
{
|
||||||
|
//转换实体
|
||||||
|
BusinessDocumentOrderDO businessDocumentOrderDO = businessDocumentOrderAssembler.toDO(businessDocumentOrderDTO);
|
||||||
|
startPage();
|
||||||
|
List<BusinessDocumentOrderPO> list = businessDocumentOrderApplicationService.queryList(businessDocumentOrderDO);
|
||||||
|
return getDataTable(list);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 编辑【业务单】
|
||||||
|
*/
|
||||||
|
@ApiOperation("编辑【业务单】")
|
||||||
|
@PostMapping("/edit")
|
||||||
|
public AjaxResult edit(@RequestBody BusinessDocumentOrderDTO businessDocumentOrderDTO)
|
||||||
|
{
|
||||||
|
//转换实体
|
||||||
|
BusinessDocumentOrderDO businessDocumentOrderDO = businessDocumentOrderAssembler.toDO(businessDocumentOrderDTO);
|
||||||
|
if(businessDocumentOrderDTO.getId() != null){
|
||||||
|
return toAjax(businessDocumentOrderApplicationService.update(businessDocumentOrderDO));
|
||||||
|
}else {
|
||||||
|
return toAjax(businessDocumentOrderApplicationService.insert(businessDocumentOrderDO));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 批量删除【业务单】
|
||||||
|
*/
|
||||||
|
@ApiOperation("批量删除【业务单】")
|
||||||
|
@DeleteMapping("/deleteByIds/{ids}")
|
||||||
|
public AjaxResult delete(@PathVariable Long[] ids)
|
||||||
|
{
|
||||||
|
return toAjax(businessDocumentOrderApplicationService.delete(ids));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取【业务单】详细信息
|
||||||
|
*/
|
||||||
|
@ApiOperation("获取【业务单】")
|
||||||
|
@GetMapping(value = "/getInfo/{id}")
|
||||||
|
public AjaxResult getInfo(@PathVariable("id") Long id)
|
||||||
|
{
|
||||||
|
return AjaxResult.success(businessDocumentOrderApplicationService.getInfo(id));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 业务单审核
|
||||||
|
*/
|
||||||
|
@ApiOperation("业务单审核")
|
||||||
|
@GetMapping(value = "/audit")
|
||||||
|
public AjaxResult audit(@RequestParam("id") Long id,@RequestParam("reviewStatus") Long reviewStatus)
|
||||||
|
{
|
||||||
|
return AjaxResult.success(businessDocumentOrderApplicationService.audit(id,reviewStatus));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 批量执行【业务单】
|
||||||
|
*/
|
||||||
|
@ApiOperation("批量执行【业务单】")
|
||||||
|
@PostMapping("/execute")
|
||||||
|
public AjaxResult execute(@RequestParam("ids") Long[] ids)
|
||||||
|
{
|
||||||
|
return toAjax(businessDocumentOrderApplicationService.execute(ids));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,99 @@
|
|||||||
|
package com.mhd.oms.interfaces.facade.executeOrder;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiOperation;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.web.bind.annotation.GetMapping;
|
||||||
|
import org.springframework.web.bind.annotation.PostMapping;
|
||||||
|
import org.springframework.web.bind.annotation.DeleteMapping;
|
||||||
|
import org.springframework.web.bind.annotation.PathVariable;
|
||||||
|
import org.springframework.web.bind.annotation.RequestBody;
|
||||||
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
import com.mhd.oms.interfaces.dto.executeOrder.ExecuteOrderDTO;
|
||||||
|
import com.mhd.oms.domain.executeOrder.repository.todo.ExecuteOrderDO;
|
||||||
|
import com.mhd.oms.domain.executeOrder.repository.po.ExecuteOrderPO;
|
||||||
|
import com.mhd.oms.application.service.executeOrder.ExecuteOrderApplicationService;
|
||||||
|
import com.mhd.oms.interfaces.assembler.executeOrder.ExecuteOrderAssembler;
|
||||||
|
import javax.annotation.Resource;
|
||||||
|
import com.mhd.common.core.web.controller.BaseController;
|
||||||
|
import com.mhd.common.core.web.domain.AjaxResult;
|
||||||
|
import com.mhd.common.core.web.page.TableDataInfo;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 【请填写功能名称】Api
|
||||||
|
*
|
||||||
|
* @author gen
|
||||||
|
* @date 2026-01-27
|
||||||
|
*/
|
||||||
|
@RestController
|
||||||
|
@RequestMapping("/executeOrderApi")
|
||||||
|
public class ExecuteOrderApi extends BaseController{
|
||||||
|
@Autowired
|
||||||
|
private ExecuteOrderApplicationService executeOrderApplicationService;
|
||||||
|
|
||||||
|
@Resource
|
||||||
|
private ExecuteOrderAssembler executeOrderAssembler;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 分页查询【请填写功能名称】列表
|
||||||
|
*/
|
||||||
|
@ApiOperation("查询【请填写功能名称】列表")
|
||||||
|
@GetMapping("/list")
|
||||||
|
public TableDataInfo list(ExecuteOrderDTO executeOrderDTO)
|
||||||
|
{
|
||||||
|
//转换实体
|
||||||
|
ExecuteOrderDO executeOrderDO = executeOrderAssembler.toDO(executeOrderDTO);
|
||||||
|
startPage();
|
||||||
|
List<ExecuteOrderPO> list = executeOrderApplicationService.queryList(executeOrderDO);
|
||||||
|
return getDataTable(list);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 编辑【请填写功能名称】
|
||||||
|
*/
|
||||||
|
@ApiOperation("编辑【请填写功能名称】")
|
||||||
|
@PostMapping("/edit")
|
||||||
|
public AjaxResult edit(@RequestBody ExecuteOrderDTO executeOrderDTO)
|
||||||
|
{
|
||||||
|
//转换实体
|
||||||
|
ExecuteOrderDO executeOrderDO = executeOrderAssembler.toDO(executeOrderDTO);
|
||||||
|
if(executeOrderDTO.getId() != null){
|
||||||
|
return toAjax(executeOrderApplicationService.update(executeOrderDO));
|
||||||
|
}else {
|
||||||
|
return toAjax(executeOrderApplicationService.insert(executeOrderDO));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 批量删除【请填写功能名称】
|
||||||
|
*/
|
||||||
|
@ApiOperation("批量删除【请填写功能名称】")
|
||||||
|
@DeleteMapping("/deleteByIds/{ids}")
|
||||||
|
public AjaxResult delete(@PathVariable Long[] ids)
|
||||||
|
{
|
||||||
|
return toAjax(executeOrderApplicationService.delete(ids));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取【请填写功能名称】详细信息
|
||||||
|
*/
|
||||||
|
@ApiOperation("获取【请填写功能名称】")
|
||||||
|
@GetMapping(value = "/getInfo/{id}")
|
||||||
|
public AjaxResult getInfo(@PathVariable("id") Long id)
|
||||||
|
{
|
||||||
|
return AjaxResult.success(executeOrderApplicationService.getInfo(id));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
+124
@@ -0,0 +1,124 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" ?>
|
||||||
|
<!DOCTYPE mapper
|
||||||
|
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||||
|
<mapper namespace="com.mhd.oms.domain.businessDocumentAddressMulti.repository.mapper.BusinessDocumentAddressMultiMapper">
|
||||||
|
|
||||||
|
<resultMap type="com.mhd.oms.domain.businessDocumentAddressMulti.repository.po.BusinessDocumentAddressMultiPO" id="BusinessDocumentAddressMultiResult">
|
||||||
|
<result property="id" column="ID" />
|
||||||
|
<result property="organizationId" column="ORGANIZATION_ID" />
|
||||||
|
<result property="organizationName" column="ORGANIZATION_NAME" />
|
||||||
|
<result property="topOrganizationId" column="TOP_ORGANIZATION_ID" />
|
||||||
|
<result property="createTime" column="CREATE_TIME" />
|
||||||
|
<result property="createBy" column="CREATE_BY" />
|
||||||
|
<result property="createByName" column="CREATE_BY_NAME" />
|
||||||
|
<result property="updateTime" column="UPDATE_TIME" />
|
||||||
|
<result property="updateBy" column="UPDATE_BY" />
|
||||||
|
<result property="updateByName" column="UPDATE_BY_NAME" />
|
||||||
|
<result property="delFlag" column="DEL_FLAG" />
|
||||||
|
<result property="orderId" column="ORDER_ID" />
|
||||||
|
<result property="areaCode" column="AREA_CODE" />
|
||||||
|
<result property="areaName" column="AREA_NAME" />
|
||||||
|
<result property="address" column="ADDRESS" />
|
||||||
|
<result property="longitude" column="LONGITUDE" />
|
||||||
|
<result property="latitude" column="LATITUDE" />
|
||||||
|
<result property="contactName" column="CONTACT_NAME" />
|
||||||
|
<result property="contactPhone" column="CONTACT_PHONE" />
|
||||||
|
<result property="layDate" column="LAY_DATE" />
|
||||||
|
<result property="layTime" column="LAY_TIME" />
|
||||||
|
<result property="layTimeId" column="LAY_TIME_ID" />
|
||||||
|
<result property="layType" column="LAY_TYPE" />
|
||||||
|
<result property="sort" column="SORT" />
|
||||||
|
<result property="shortName" column="SHORT_NAME" />
|
||||||
|
</resultMap>
|
||||||
|
|
||||||
|
|
||||||
|
<sql id="selectBusinessDocumentAddressMultiPo">
|
||||||
|
select ID, ORGANIZATION_ID, ORGANIZATION_NAME, TOP_ORGANIZATION_ID, CREATE_TIME, CREATE_BY, CREATE_BY_NAME, UPDATE_TIME, UPDATE_BY, UPDATE_BY_NAME, DEL_FLAG, ORDER_ID, AREA_CODE, AREA_NAME, ADDRESS, LONGITUDE, LATITUDE, CONTACT_NAME, CONTACT_PHONE, LAY_DATE, LAY_TIME, LAY_TIME_ID, LAY_TYPE, SORT, SHORT_NAME from business_document_address_multi
|
||||||
|
</sql>
|
||||||
|
|
||||||
|
<sql id="selectBusinessDocumentAddressMultiPo1">
|
||||||
|
<where>
|
||||||
|
<if test="id != null ">
|
||||||
|
and ID = #{id}
|
||||||
|
</if>
|
||||||
|
<if test="organizationId != null ">
|
||||||
|
and ORGANIZATION_ID = #{organizationId}
|
||||||
|
</if>
|
||||||
|
<if test="organizationName != null and organizationName != ''">
|
||||||
|
and ORGANIZATION_NAME like concat('%', #{organizationName}, '%')
|
||||||
|
</if>
|
||||||
|
<if test="topOrganizationId != null ">
|
||||||
|
and TOP_ORGANIZATION_ID = #{topOrganizationId}
|
||||||
|
</if>
|
||||||
|
<if test="createTime != null ">
|
||||||
|
and CREATE_TIME = #{createTime}
|
||||||
|
</if>
|
||||||
|
<if test="createBy != null ">
|
||||||
|
and CREATE_BY = #{createBy}
|
||||||
|
</if>
|
||||||
|
<if test="createByName != null and createByName != ''">
|
||||||
|
and CREATE_BY_NAME like concat('%', #{createByName}, '%')
|
||||||
|
</if>
|
||||||
|
<if test="updateTime != null ">
|
||||||
|
and UPDATE_TIME = #{updateTime}
|
||||||
|
</if>
|
||||||
|
<if test="updateBy != null ">
|
||||||
|
and UPDATE_BY = #{updateBy}
|
||||||
|
</if>
|
||||||
|
<if test="updateByName != null and updateByName != ''">
|
||||||
|
and UPDATE_BY_NAME like concat('%', #{updateByName}, '%')
|
||||||
|
</if>
|
||||||
|
<if test="delFlag != null ">
|
||||||
|
and DEL_FLAG = #{delFlag}
|
||||||
|
</if>
|
||||||
|
<if test="orderId != null and orderId != ''">
|
||||||
|
and ORDER_ID = #{orderId}
|
||||||
|
</if>
|
||||||
|
<if test="areaCode != null and areaCode != ''">
|
||||||
|
and AREA_CODE = #{areaCode}
|
||||||
|
</if>
|
||||||
|
<if test="areaName != null and areaName != ''">
|
||||||
|
and AREA_NAME like concat('%', #{areaName}, '%')
|
||||||
|
</if>
|
||||||
|
<if test="address != null and address != ''">
|
||||||
|
and ADDRESS = #{address}
|
||||||
|
</if>
|
||||||
|
<if test="longitude != null and longitude != ''">
|
||||||
|
and LONGITUDE = #{longitude}
|
||||||
|
</if>
|
||||||
|
<if test="latitude != null and latitude != ''">
|
||||||
|
and LATITUDE = #{latitude}
|
||||||
|
</if>
|
||||||
|
<if test="contactName != null and contactName != ''">
|
||||||
|
and CONTACT_NAME like concat('%', #{contactName}, '%')
|
||||||
|
</if>
|
||||||
|
<if test="contactPhone != null and contactPhone != ''">
|
||||||
|
and CONTACT_PHONE = #{contactPhone}
|
||||||
|
</if>
|
||||||
|
<if test="layDate != null ">
|
||||||
|
and LAY_DATE = #{layDate}
|
||||||
|
</if>
|
||||||
|
<if test="layTime != null and layTime != ''">
|
||||||
|
and LAY_TIME = #{layTime}
|
||||||
|
</if>
|
||||||
|
<if test="layTimeId != null and layTimeId != ''">
|
||||||
|
and LAY_TIME_ID = #{layTimeId}
|
||||||
|
</if>
|
||||||
|
<if test="layType != null ">
|
||||||
|
and LAY_TYPE = #{layType}
|
||||||
|
</if>
|
||||||
|
<if test="sort != null ">
|
||||||
|
and SORT = #{sort}
|
||||||
|
</if>
|
||||||
|
<if test="shortName != null and shortName != ''">
|
||||||
|
and SHORT_NAME like concat('%', #{shortName}, '%')
|
||||||
|
</if>
|
||||||
|
</where>
|
||||||
|
</sql>
|
||||||
|
|
||||||
|
<select id="queryList" parameterType="com.mhd.oms.domain.businessDocumentAddressMulti.repository.todo.BusinessDocumentAddressMultiDO" resultMap="BusinessDocumentAddressMultiResult">
|
||||||
|
<include refid="selectBusinessDocumentAddressMultiPo"/>
|
||||||
|
<include refid="selectBusinessDocumentAddressMultiPo1"/>
|
||||||
|
</select>
|
||||||
|
</mapper>
|
||||||
+92
@@ -0,0 +1,92 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" ?>
|
||||||
|
<!DOCTYPE mapper
|
||||||
|
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||||
|
<mapper namespace="com.mhd.oms.domain.businessDocumentCargoMulti.repository.mapper.BusinessDocumentCargoMultiMapper">
|
||||||
|
|
||||||
|
<resultMap type="com.mhd.oms.domain.businessDocumentCargoMulti.repository.po.BusinessDocumentCargoMultiPO" id="BusinessDocumentCargoMultiResult">
|
||||||
|
<result property="id" column="ID" />
|
||||||
|
<result property="organizationId" column="ORGANIZATION_ID" />
|
||||||
|
<result property="organizationName" column="ORGANIZATION_NAME" />
|
||||||
|
<result property="topOrganizationId" column="TOP_ORGANIZATION_ID" />
|
||||||
|
<result property="createTime" column="CREATE_TIME" />
|
||||||
|
<result property="createBy" column="CREATE_BY" />
|
||||||
|
<result property="createByName" column="CREATE_BY_NAME" />
|
||||||
|
<result property="updateTime" column="UPDATE_TIME" />
|
||||||
|
<result property="updateBy" column="UPDATE_BY" />
|
||||||
|
<result property="updateByName" column="UPDATE_BY_NAME" />
|
||||||
|
<result property="delFlag" column="DEL_FLAG" />
|
||||||
|
<result property="layInfoId" column="LAY_INFO_ID" />
|
||||||
|
<result property="goodsTypeId" column="GOODS_TYPE_ID" />
|
||||||
|
<result property="goodsType" column="GOODS_TYPE" />
|
||||||
|
<result property="goodsNameId" column="GOODS_NAME_ID" />
|
||||||
|
<result property="goodsName" column="GOODS_NAME" />
|
||||||
|
<result property="cargoWeight" column="CARGO_WEIGHT" />
|
||||||
|
</resultMap>
|
||||||
|
|
||||||
|
|
||||||
|
<sql id="selectBusinessDocumentCargoMultiPo">
|
||||||
|
select ID, ORGANIZATION_ID, ORGANIZATION_NAME, TOP_ORGANIZATION_ID, CREATE_TIME, CREATE_BY, CREATE_BY_NAME, UPDATE_TIME, UPDATE_BY, UPDATE_BY_NAME, DEL_FLAG, LAY_INFO_ID, GOODS_TYPE_ID, GOODS_TYPE, GOODS_NAME_ID, GOODS_NAME, CARGO_WEIGHT from business_document_cargo_multi
|
||||||
|
</sql>
|
||||||
|
|
||||||
|
<sql id="selectBusinessDocumentCargoMultiPo1">
|
||||||
|
<where>
|
||||||
|
<if test="id != null ">
|
||||||
|
and ID = #{id}
|
||||||
|
</if>
|
||||||
|
<if test="organizationId != null ">
|
||||||
|
and ORGANIZATION_ID = #{organizationId}
|
||||||
|
</if>
|
||||||
|
<if test="organizationName != null and organizationName != ''">
|
||||||
|
and ORGANIZATION_NAME like concat('%', #{organizationName}, '%')
|
||||||
|
</if>
|
||||||
|
<if test="topOrganizationId != null ">
|
||||||
|
and TOP_ORGANIZATION_ID = #{topOrganizationId}
|
||||||
|
</if>
|
||||||
|
<if test="createTime != null ">
|
||||||
|
and CREATE_TIME = #{createTime}
|
||||||
|
</if>
|
||||||
|
<if test="createBy != null ">
|
||||||
|
and CREATE_BY = #{createBy}
|
||||||
|
</if>
|
||||||
|
<if test="createByName != null and createByName != ''">
|
||||||
|
and CREATE_BY_NAME like concat('%', #{createByName}, '%')
|
||||||
|
</if>
|
||||||
|
<if test="updateTime != null ">
|
||||||
|
and UPDATE_TIME = #{updateTime}
|
||||||
|
</if>
|
||||||
|
<if test="updateBy != null ">
|
||||||
|
and UPDATE_BY = #{updateBy}
|
||||||
|
</if>
|
||||||
|
<if test="updateByName != null and updateByName != ''">
|
||||||
|
and UPDATE_BY_NAME like concat('%', #{updateByName}, '%')
|
||||||
|
</if>
|
||||||
|
<if test="delFlag != null ">
|
||||||
|
and DEL_FLAG = #{delFlag}
|
||||||
|
</if>
|
||||||
|
<if test="layInfoId != null and layInfoId != ''">
|
||||||
|
and LAY_INFO_ID = #{layInfoId}
|
||||||
|
</if>
|
||||||
|
<if test="goodsTypeId != null and goodsTypeId != ''">
|
||||||
|
and GOODS_TYPE_ID = #{goodsTypeId}
|
||||||
|
</if>
|
||||||
|
<if test="goodsType != null and goodsType != ''">
|
||||||
|
and GOODS_TYPE = #{goodsType}
|
||||||
|
</if>
|
||||||
|
<if test="goodsNameId != null and goodsNameId != ''">
|
||||||
|
and GOODS_NAME_ID = #{goodsNameId}
|
||||||
|
</if>
|
||||||
|
<if test="goodsName != null and goodsName != ''">
|
||||||
|
and GOODS_NAME like concat('%', #{goodsName}, '%')
|
||||||
|
</if>
|
||||||
|
<if test="cargoWeight != null ">
|
||||||
|
and CARGO_WEIGHT = #{cargoWeight}
|
||||||
|
</if>
|
||||||
|
</where>
|
||||||
|
</sql>
|
||||||
|
|
||||||
|
<select id="queryList" parameterType="com.mhd.oms.domain.businessDocumentCargoMulti.repository.todo.BusinessDocumentCargoMultiDO" resultMap="BusinessDocumentCargoMultiResult">
|
||||||
|
<include refid="selectBusinessDocumentCargoMultiPo"/>
|
||||||
|
<include refid="selectBusinessDocumentCargoMultiPo1"/>
|
||||||
|
</select>
|
||||||
|
</mapper>
|
||||||
+676
@@ -0,0 +1,676 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" ?>
|
||||||
|
<!DOCTYPE mapper
|
||||||
|
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||||
|
<mapper namespace="com.mhd.oms.domain.businessDocumentOrder.repository.mapper.BusinessDocumentOrderMapper">
|
||||||
|
|
||||||
|
<resultMap type="com.mhd.oms.domain.businessDocumentOrder.repository.po.BusinessDocumentOrderPO" id="BusinessDocumentOrderResult">
|
||||||
|
<result property="id" column="ID" />
|
||||||
|
<result property="realCreateBy" column="REAL_CREATE_BY" />
|
||||||
|
<result property="realCreateName" column="REAL_CREATE_NAME" />
|
||||||
|
<result property="createBy" column="CREATE_BY" />
|
||||||
|
<result property="createCompanyId" column="CREATE_COMPANY_ID" />
|
||||||
|
<result property="createTime" column="CREATE_TIME" />
|
||||||
|
<result property="updateBy" column="UPDATE_BY" />
|
||||||
|
<result property="updateTime" column="UPDATE_TIME" />
|
||||||
|
<result property="goodsNumber" column="GOODS_NUMBER" />
|
||||||
|
<result property="loadingAreaId" column="LOADING_AREA_ID" />
|
||||||
|
<result property="loadingName" column="LOADING_NAME" />
|
||||||
|
<result property="loadingAddress" column="LOADING_ADDRESS" />
|
||||||
|
<result property="loadingLongitude" column="LOADING_LONGITUDE" />
|
||||||
|
<result property="loadingLatitude" column="LOADING_LATITUDE" />
|
||||||
|
<result property="loadingUnit" column="LOADING_UNIT" />
|
||||||
|
<result property="freighterName" column="FREIGHTER_NAME" />
|
||||||
|
<result property="loadingPhone" column="LOADING_PHONE" />
|
||||||
|
<result property="loadingDate" column="LOADING_DATE" />
|
||||||
|
<result property="unloadAreaId" column="UNLOAD_AREA_ID" />
|
||||||
|
<result property="unloadName" column="UNLOAD_NAME" />
|
||||||
|
<result property="unloadAddress" column="UNLOAD_ADDRESS" />
|
||||||
|
<result property="unloadLongitude" column="UNLOAD_LONGITUDE" />
|
||||||
|
<result property="unloadLatitude" column="UNLOAD_LATITUDE" />
|
||||||
|
<result property="dischargerName" column="DISCHARGER_NAME" />
|
||||||
|
<result property="unloadPhone" column="UNLOAD_PHONE" />
|
||||||
|
<result property="unloadingData" column="UNLOADING_DATA" />
|
||||||
|
<result property="goodsTypeId" column="GOODS_TYPE_ID" />
|
||||||
|
<result property="goodsType" column="GOODS_TYPE" />
|
||||||
|
<result property="goodsNameId" column="GOODS_NAME_ID" />
|
||||||
|
<result property="goodsName" column="GOODS_NAME" />
|
||||||
|
<result property="weightMin" column="WEIGHT_MIN" />
|
||||||
|
<result property="weightMax" column="WEIGHT_MAX" />
|
||||||
|
<result property="goodsUntisId" column="GOODS_UNTIS_ID" />
|
||||||
|
<result property="goodsUntis" column="GOODS_UNTIS" />
|
||||||
|
<result property="transportationModeId" column="TRANSPORTATION_MODE_ID" />
|
||||||
|
<result property="transportationName" column="TRANSPORTATION_NAME" />
|
||||||
|
<result property="carType" column="CAR_TYPE" />
|
||||||
|
<result property="carTypeName" column="CAR_TYPE_NAME" />
|
||||||
|
<result property="serviceRequireId" column="SERVICE_REQUIRE_ID" />
|
||||||
|
<result property="serviceRequire" column="SERVICE_REQUIRE" />
|
||||||
|
<result property="remarks" column="REMARKS" />
|
||||||
|
<result property="waybillFrom" column="WAYBILL_FROM" />
|
||||||
|
<result property="isSource" column="IS_SOURCE" />
|
||||||
|
<result property="sourceCloseTime" column="SOURCE_CLOSE_TIME" />
|
||||||
|
<result property="executorId" column="EXECUTOR_ID" />
|
||||||
|
<result property="isDelete" column="IS_DELETE" />
|
||||||
|
<result property="lineTitleLeft" column="LINE_TITLE_LEFT" />
|
||||||
|
<result property="lineTitleRight" column="LINE_TITLE_RIGHT" />
|
||||||
|
<result property="sysOrgCode" column="SYS_ORG_CODE" />
|
||||||
|
<result property="isCommon" column="IS_COMMON" />
|
||||||
|
<result property="goodsTypeMajor" column="GOODS_TYPE_MAJOR" />
|
||||||
|
<result property="auditStatus" column="AUDIT_STATUS" />
|
||||||
|
<result property="waybillMode" column="WAYBILL_MODE" />
|
||||||
|
<result property="latestBiddingTime" column="LATEST_BIDDING_TIME" />
|
||||||
|
<result property="deliveryFreight" column="DELIVERY_FREIGHT" />
|
||||||
|
<result property="collectedFreight" column="COLLECTED_FREIGHT" />
|
||||||
|
<result property="uncollectedFreight" column="UNCOLLECTED_FREIGHT" />
|
||||||
|
<result property="collectLessFreight" column="COLLECT_LESS_FREIGHT" />
|
||||||
|
<result property="auditBy" column="AUDIT_BY" />
|
||||||
|
<result property="auditTime" column="AUDIT_TIME" />
|
||||||
|
<result property="businessType" column="BUSINESS_TYPE" />
|
||||||
|
<result property="transportationUnitPrice" column="TRANSPORTATION_UNIT_PRICE" />
|
||||||
|
<result property="radioValue" column="RADIO_VALUE" />
|
||||||
|
<result property="createrName" column="CREATER_NAME" />
|
||||||
|
<result property="createrPhone" column="CREATER_PHONE" />
|
||||||
|
<result property="isElectricFence" column="IS_ELECTRIC_FENCE" />
|
||||||
|
<result property="wxaQrcode" column="WXA_QRCODE" />
|
||||||
|
<result property="appointShipperId" column="APPOINT_SHIPPER_ID" />
|
||||||
|
<result property="createUserId" column="CREATE_USER_ID" />
|
||||||
|
<result property="appointShipper" column="APPOINT_SHIPPER" />
|
||||||
|
<result property="isStatus" column="IS_STATUS" />
|
||||||
|
<result property="signatureAddress" column="SIGNATURE_ADDRESS" />
|
||||||
|
<result property="qrCodeImgUrl" column="QR_CODE_IMG_URL" />
|
||||||
|
<result property="shippingNote" column="SHIPPING_NOTE" />
|
||||||
|
<result property="receivableType" column="RECEIVABLE_TYPE" />
|
||||||
|
<result property="thirdPartyOrderNumber" column="THIRD_PARTY_ORDER_NUMBER" />
|
||||||
|
<result property="dispatchOrderNumber" column="DISPATCH_ORDER_NUMBER" />
|
||||||
|
<result property="appointDriverEnterpriseId" column="APPOINT_DRIVER_ENTERPRISE_ID" />
|
||||||
|
<result property="appointDriverEnterprise" column="APPOINT_DRIVER_ENTERPRISE" />
|
||||||
|
<result property="cancelOrderRemark" column="CANCEL_ORDER_REMARK" />
|
||||||
|
<result property="orderDriverId" column="ORDER_DRIVER_ID" />
|
||||||
|
<result property="goodsQuantity" column="GOODS_QUANTITY" />
|
||||||
|
<result property="goodsQuantityUnitId" column="GOODS_QUANTITY_UNIT_ID" />
|
||||||
|
<result property="goodsQuantityUnit" column="GOODS_QUANTITY_UNIT" />
|
||||||
|
<result property="biddingUnit" column="BIDDING_UNIT" />
|
||||||
|
<result property="orderStatus" column="ORDER_STATUS" />
|
||||||
|
<result property="splicingOrderType" column="SPLICING_ORDER_TYPE" />
|
||||||
|
<result property="splicingStatus" column="SPLICING_STATUS" />
|
||||||
|
<result property="mainOrderId" column="MAIN_ORDER_ID" />
|
||||||
|
<result property="mainOrderNum" column="MAIN_ORDER_NUM" />
|
||||||
|
<result property="mergeOrderId" column="MERGE_ORDER_ID" />
|
||||||
|
<result property="mergeOrderNum" column="MERGE_ORDER_NUM" />
|
||||||
|
<result property="payerType" column="PAYER_TYPE" />
|
||||||
|
<result property="machineNumber" column="MACHINE_NUMBER" />
|
||||||
|
<result property="stockFlag" column="STOCK_FLAG" />
|
||||||
|
<result property="infoFee" column="INFO_FEE" />
|
||||||
|
<result property="infoFeePayeeType" column="INFO_FEE_PAYEE_TYPE" />
|
||||||
|
<result property="infoFeePayee" column="INFO_FEE_PAYEE" />
|
||||||
|
<result property="infoFeeStatus" column="INFO_FEE_STATUS" />
|
||||||
|
<result property="infoFeeDocumentNumber" column="INFO_FEE_DOCUMENT_NUMBER" />
|
||||||
|
<result property="orderShippingType" column="ORDER_SHIPPING_TYPE" />
|
||||||
|
<result property="recipientId" column="RECIPIENT_ID" />
|
||||||
|
<result property="recipientName" column="RECIPIENT_NAME" />
|
||||||
|
<result property="settlementStatus" column="SETTLEMENT_STATUS" />
|
||||||
|
<result property="settlementTime" column="SETTLEMENT_TIME" />
|
||||||
|
<result property="paymentTime" column="PAYMENT_TIME" />
|
||||||
|
<result property="reconciliationInnerNumber" column="RECONCILIATION_INNER_NUMBER" />
|
||||||
|
<result property="receivePaymentNumber" column="RECEIVE_PAYMENT_NUMBER" />
|
||||||
|
<result property="invoiceId" column="INVOICE_ID" />
|
||||||
|
<result property="isInvoice" column="IS_INVOICE" />
|
||||||
|
<result property="vehicleTypeId" column="VEHICLE_TYPE_ID" />
|
||||||
|
<result property="vehicleTypeName" column="VEHICLE_TYPE_NAME" />
|
||||||
|
<result property="carrier" column="CARRIER" />
|
||||||
|
<result property="carrierName" column="CARRIER_NAME" />
|
||||||
|
<result property="szwlUserId" column="SZWL_USER_ID" />
|
||||||
|
<result property="freightUnitPrice" column="FREIGHT_UNIT_PRICE" />
|
||||||
|
<result property="biddingStatus" column="BIDDING_STATUS" />
|
||||||
|
<result property="biddingRemarks" column="BIDDING_REMARKS" />
|
||||||
|
<result property="cargoInsuranceAmount" column="CARGO_INSURANCE_AMOUNT" />
|
||||||
|
<result property="destination" column="DESTINATION" />
|
||||||
|
<result property="freightCharges" column="FREIGHT_CHARGES" />
|
||||||
|
<result property="payer" column="PAYER" />
|
||||||
|
<result property="salesmanId" column="SALESMAN_ID" />
|
||||||
|
<result property="isDeclare" column="IS_DECLARE" />
|
||||||
|
<result property="route" column="ROUTE" />
|
||||||
|
<result property="containerType" column="CONTAINER_TYPE" />
|
||||||
|
<result property="containerTypeName" column="CONTAINER_TYPE_NAME" />
|
||||||
|
<result property="cardType" column="CARD_TYPE" />
|
||||||
|
<result property="cardTypeName" column="CARD_TYPE_NAME" />
|
||||||
|
<result property="externalContainerNo" column="EXTERNAL_CONTAINER_NO" />
|
||||||
|
<result property="transitPlace" column="TRANSIT_PLACE" />
|
||||||
|
<result property="shipper" column="SHIPPER" />
|
||||||
|
<result property="customsShipper" column="CUSTOMS_SHIPPER" />
|
||||||
|
<result property="customsShipperTel" column="CUSTOMS_SHIPPER_TEL" />
|
||||||
|
<result property="unloadingCompany" column="UNLOADING_COMPANY" />
|
||||||
|
<result property="contractNo" column="CONTRACT_NO" />
|
||||||
|
<result property="freightFee" column="FREIGHT_FEE" />
|
||||||
|
<result property="unloadingFee" column="UNLOADING_FEE" />
|
||||||
|
<result property="customsFee" column="CUSTOMS_FEE" />
|
||||||
|
<result property="shortageFee" column="SHORTAGE_FEE" />
|
||||||
|
<result property="miscellaneousFee" column="MISCELLANEOUS_FEE" />
|
||||||
|
<result property="otherFee" column="OTHER_FEE" />
|
||||||
|
<result property="detentionFee" column="DETENTION_FEE" />
|
||||||
|
<result property="taxRate" column="TAX_RATE" />
|
||||||
|
<result property="settlementCurrency" column="SETTLEMENT_CURRENCY" />
|
||||||
|
<result property="volume" column="VOLUME" />
|
||||||
|
<result property="detailContent" column="DETAIL_CONTENT" />
|
||||||
|
<result property="customsRoute" column="CUSTOMS_ROUTE" />
|
||||||
|
<result property="customsPort" column="CUSTOMS_PORT" />
|
||||||
|
<result property="customsContact" column="CUSTOMS_CONTACT" />
|
||||||
|
<result property="customsContactPhone" column="CUSTOMS_CONTACT_PHONE" />
|
||||||
|
<result property="customsRemark" column="CUSTOMS_REMARK" />
|
||||||
|
<result property="orgId" column="ORG_ID" />
|
||||||
|
<result property="goodsCategory" column="GOODS_CATEGORY" />
|
||||||
|
<result property="makerCodeNc" column="MAKER_CODE_NC" />
|
||||||
|
<result property="salesmanCodeNc" column="SALESMAN_CODE_NC" />
|
||||||
|
<result property="customerCodeNc" column="CUSTOMER_CODE_NC" />
|
||||||
|
<result property="salesmanName" column="SALESMAN_NAME" />
|
||||||
|
<result property="orgName" column="ORG_NAME" />
|
||||||
|
<result property="organizationId" column="ORGANIZATION_ID" />
|
||||||
|
<result property="organizationName" column="ORGANIZATION_NAME" />
|
||||||
|
<result property="topOrganizationId" column="TOP_ORGANIZATION_ID" />
|
||||||
|
<result property="documentDate" column="DOCUMENT_DATE" />
|
||||||
|
</resultMap>
|
||||||
|
|
||||||
|
|
||||||
|
<sql id="selectBusinessDocumentOrderPo">
|
||||||
|
select ID, REAL_CREATE_BY, REAL_CREATE_NAME, CREATE_BY, CREATE_COMPANY_ID, CREATE_TIME, UPDATE_BY, UPDATE_TIME, GOODS_NUMBER, LOADING_AREA_ID, LOADING_NAME, LOADING_ADDRESS, LOADING_LONGITUDE, LOADING_LATITUDE, LOADING_UNIT, FREIGHTER_NAME, LOADING_PHONE, LOADING_DATE, UNLOAD_AREA_ID, UNLOAD_NAME, UNLOAD_ADDRESS, UNLOAD_LONGITUDE, UNLOAD_LATITUDE, DISCHARGER_NAME, UNLOAD_PHONE, UNLOADING_DATA, GOODS_TYPE_ID, GOODS_TYPE, GOODS_NAME_ID, GOODS_NAME, WEIGHT_MIN, WEIGHT_MAX, GOODS_UNTIS_ID, GOODS_UNTIS, TRANSPORTATION_MODE_ID, TRANSPORTATION_NAME, CAR_TYPE, CAR_TYPE_NAME, SERVICE_REQUIRE_ID, SERVICE_REQUIRE, REMARKS, WAYBILL_FROM, IS_SOURCE, SOURCE_CLOSE_TIME, EXECUTOR_ID, IS_DELETE, LINE_TITLE_LEFT, LINE_TITLE_RIGHT, SYS_ORG_CODE, IS_COMMON, GOODS_TYPE_MAJOR, AUDIT_STATUS, WAYBILL_MODE, LATEST_BIDDING_TIME, DELIVERY_FREIGHT, COLLECTED_FREIGHT, UNCOLLECTED_FREIGHT, COLLECT_LESS_FREIGHT, AUDIT_BY, AUDIT_TIME, BUSINESS_TYPE, TRANSPORTATION_UNIT_PRICE, RADIO_VALUE, CREATER_NAME, CREATER_PHONE, IS_ELECTRIC_FENCE, WXA_QRCODE, APPOINT_SHIPPER_ID, CREATE_USER_ID, APPOINT_SHIPPER, IS_STATUS, SIGNATURE_ADDRESS, QR_CODE_IMG_URL, SHIPPING_NOTE, RECEIVABLE_TYPE, THIRD_PARTY_ORDER_NUMBER, DISPATCH_ORDER_NUMBER, APPOINT_DRIVER_ENTERPRISE_ID, APPOINT_DRIVER_ENTERPRISE, CANCEL_ORDER_REMARK, ORDER_DRIVER_ID, GOODS_QUANTITY, GOODS_QUANTITY_UNIT_ID, GOODS_QUANTITY_UNIT, BIDDING_UNIT, ORDER_STATUS, SPLICING_ORDER_TYPE, SPLICING_STATUS, MAIN_ORDER_ID, MAIN_ORDER_NUM, MERGE_ORDER_ID, MERGE_ORDER_NUM, PAYER_TYPE, MACHINE_NUMBER, STOCK_FLAG, INFO_FEE, INFO_FEE_PAYEE_TYPE, INFO_FEE_PAYEE, INFO_FEE_STATUS, INFO_FEE_DOCUMENT_NUMBER, ORDER_SHIPPING_TYPE, RECIPIENT_ID, RECIPIENT_NAME, SETTLEMENT_STATUS, SETTLEMENT_TIME, PAYMENT_TIME, RECONCILIATION_INNER_NUMBER, RECEIVE_PAYMENT_NUMBER, INVOICE_ID, IS_INVOICE, VEHICLE_TYPE_ID, VEHICLE_TYPE_NAME, CARRIER, CARRIER_NAME, SZWL_USER_ID, FREIGHT_UNIT_PRICE, BIDDING_STATUS, BIDDING_REMARKS, CARGO_INSURANCE_AMOUNT, DESTINATION, FREIGHT_CHARGES, PAYER, SALESMAN_ID, IS_DECLARE, ROUTE, CONTAINER_TYPE, CONTAINER_TYPE_NAME, CARD_TYPE, CARD_TYPE_NAME, EXTERNAL_CONTAINER_NO, TRANSIT_PLACE, SHIPPER, CUSTOMS_SHIPPER, CUSTOMS_SHIPPER_TEL, UNLOADING_COMPANY, CONTRACT_NO, FREIGHT_FEE, UNLOADING_FEE, CUSTOMS_FEE, SHORTAGE_FEE, MISCELLANEOUS_FEE, OTHER_FEE, DETENTION_FEE, TAX_RATE, SETTLEMENT_CURRENCY, VOLUME, DETAIL_CONTENT, CUSTOMS_ROUTE, CUSTOMS_PORT, CUSTOMS_CONTACT, CUSTOMS_CONTACT_PHONE, CUSTOMS_REMARK, ORG_ID, GOODS_CATEGORY, MAKER_CODE_NC, SALESMAN_CODE_NC, CUSTOMER_CODE_NC, SALESMAN_NAME, ORG_NAME, ORGANIZATION_ID, ORGANIZATION_NAME, TOP_ORGANIZATION_ID, DOCUMENT_DATE from business_document_order
|
||||||
|
</sql>
|
||||||
|
|
||||||
|
<sql id="selectBusinessDocumentOrderPo1">
|
||||||
|
<where>
|
||||||
|
<if test="id != null ">
|
||||||
|
and ID = #{id}
|
||||||
|
</if>
|
||||||
|
<if test="realCreateBy != null and realCreateBy != ''">
|
||||||
|
and REAL_CREATE_BY = #{realCreateBy}
|
||||||
|
</if>
|
||||||
|
<if test="realCreateName != null and realCreateName != ''">
|
||||||
|
and REAL_CREATE_NAME like concat('%', #{realCreateName}, '%')
|
||||||
|
</if>
|
||||||
|
<if test="createBy != null and createBy != ''">
|
||||||
|
and CREATE_BY = #{createBy}
|
||||||
|
</if>
|
||||||
|
<if test="createCompanyId != null and createCompanyId != ''">
|
||||||
|
and CREATE_COMPANY_ID = #{createCompanyId}
|
||||||
|
</if>
|
||||||
|
<if test="createTime != null ">
|
||||||
|
and CREATE_TIME = #{createTime}
|
||||||
|
</if>
|
||||||
|
<if test="updateBy != null and updateBy != ''">
|
||||||
|
and UPDATE_BY = #{updateBy}
|
||||||
|
</if>
|
||||||
|
<if test="updateTime != null ">
|
||||||
|
and UPDATE_TIME = #{updateTime}
|
||||||
|
</if>
|
||||||
|
<if test="goodsNumber != null and goodsNumber != ''">
|
||||||
|
and GOODS_NUMBER = #{goodsNumber}
|
||||||
|
</if>
|
||||||
|
<if test="loadingAreaId != null and loadingAreaId != ''">
|
||||||
|
and LOADING_AREA_ID = #{loadingAreaId}
|
||||||
|
</if>
|
||||||
|
<if test="loadingName != null and loadingName != ''">
|
||||||
|
and LOADING_NAME like concat('%', #{loadingName}, '%')
|
||||||
|
</if>
|
||||||
|
<if test="loadingAddress != null and loadingAddress != ''">
|
||||||
|
and LOADING_ADDRESS = #{loadingAddress}
|
||||||
|
</if>
|
||||||
|
<if test="loadingLongitude != null and loadingLongitude != ''">
|
||||||
|
and LOADING_LONGITUDE = #{loadingLongitude}
|
||||||
|
</if>
|
||||||
|
<if test="loadingLatitude != null and loadingLatitude != ''">
|
||||||
|
and LOADING_LATITUDE = #{loadingLatitude}
|
||||||
|
</if>
|
||||||
|
<if test="loadingUnit != null and loadingUnit != ''">
|
||||||
|
and LOADING_UNIT = #{loadingUnit}
|
||||||
|
</if>
|
||||||
|
<if test="freighterName != null and freighterName != ''">
|
||||||
|
and FREIGHTER_NAME like concat('%', #{freighterName}, '%')
|
||||||
|
</if>
|
||||||
|
<if test="loadingPhone != null and loadingPhone != ''">
|
||||||
|
and LOADING_PHONE = #{loadingPhone}
|
||||||
|
</if>
|
||||||
|
<if test="loadingDate != null ">
|
||||||
|
and LOADING_DATE = #{loadingDate}
|
||||||
|
</if>
|
||||||
|
<if test="unloadAreaId != null and unloadAreaId != ''">
|
||||||
|
and UNLOAD_AREA_ID = #{unloadAreaId}
|
||||||
|
</if>
|
||||||
|
<if test="unloadName != null and unloadName != ''">
|
||||||
|
and UNLOAD_NAME like concat('%', #{unloadName}, '%')
|
||||||
|
</if>
|
||||||
|
<if test="unloadAddress != null and unloadAddress != ''">
|
||||||
|
and UNLOAD_ADDRESS = #{unloadAddress}
|
||||||
|
</if>
|
||||||
|
<if test="unloadLongitude != null and unloadLongitude != ''">
|
||||||
|
and UNLOAD_LONGITUDE = #{unloadLongitude}
|
||||||
|
</if>
|
||||||
|
<if test="unloadLatitude != null and unloadLatitude != ''">
|
||||||
|
and UNLOAD_LATITUDE = #{unloadLatitude}
|
||||||
|
</if>
|
||||||
|
<if test="dischargerName != null and dischargerName != ''">
|
||||||
|
and DISCHARGER_NAME like concat('%', #{dischargerName}, '%')
|
||||||
|
</if>
|
||||||
|
<if test="unloadPhone != null and unloadPhone != ''">
|
||||||
|
and UNLOAD_PHONE = #{unloadPhone}
|
||||||
|
</if>
|
||||||
|
<if test="unloadingData != null ">
|
||||||
|
and UNLOADING_DATA = #{unloadingData}
|
||||||
|
</if>
|
||||||
|
<if test="goodsTypeId != null and goodsTypeId != ''">
|
||||||
|
and GOODS_TYPE_ID = #{goodsTypeId}
|
||||||
|
</if>
|
||||||
|
<if test="goodsType != null and goodsType != ''">
|
||||||
|
and GOODS_TYPE = #{goodsType}
|
||||||
|
</if>
|
||||||
|
<if test="goodsNameId != null and goodsNameId != ''">
|
||||||
|
and GOODS_NAME_ID = #{goodsNameId}
|
||||||
|
</if>
|
||||||
|
<if test="goodsName != null and goodsName != ''">
|
||||||
|
and GOODS_NAME like concat('%', #{goodsName}, '%')
|
||||||
|
</if>
|
||||||
|
<if test="weightMin != null ">
|
||||||
|
and WEIGHT_MIN = #{weightMin}
|
||||||
|
</if>
|
||||||
|
<if test="weightMax != null ">
|
||||||
|
and WEIGHT_MAX = #{weightMax}
|
||||||
|
</if>
|
||||||
|
<if test="goodsUntisId != null and goodsUntisId != ''">
|
||||||
|
and GOODS_UNTIS_ID = #{goodsUntisId}
|
||||||
|
</if>
|
||||||
|
<if test="goodsUntis != null and goodsUntis != ''">
|
||||||
|
and GOODS_UNTIS = #{goodsUntis}
|
||||||
|
</if>
|
||||||
|
<if test="transportationModeId != null ">
|
||||||
|
and TRANSPORTATION_MODE_ID = #{transportationModeId}
|
||||||
|
</if>
|
||||||
|
<if test="transportationName != null and transportationName != ''">
|
||||||
|
and TRANSPORTATION_NAME like concat('%', #{transportationName}, '%')
|
||||||
|
</if>
|
||||||
|
<if test="carType != null and carType != ''">
|
||||||
|
and CAR_TYPE = #{carType}
|
||||||
|
</if>
|
||||||
|
<if test="carTypeName != null and carTypeName != ''">
|
||||||
|
and CAR_TYPE_NAME like concat('%', #{carTypeName}, '%')
|
||||||
|
</if>
|
||||||
|
<if test="serviceRequireId != null and serviceRequireId != ''">
|
||||||
|
and SERVICE_REQUIRE_ID = #{serviceRequireId}
|
||||||
|
</if>
|
||||||
|
<if test="serviceRequire != null and serviceRequire != ''">
|
||||||
|
and SERVICE_REQUIRE = #{serviceRequire}
|
||||||
|
</if>
|
||||||
|
<if test="remarks != null and remarks != ''">
|
||||||
|
and REMARKS = #{remarks}
|
||||||
|
</if>
|
||||||
|
<if test="waybillFrom != null ">
|
||||||
|
and WAYBILL_FROM = #{waybillFrom}
|
||||||
|
</if>
|
||||||
|
<if test="isSource != null ">
|
||||||
|
and IS_SOURCE = #{isSource}
|
||||||
|
</if>
|
||||||
|
<if test="sourceCloseTime != null ">
|
||||||
|
and SOURCE_CLOSE_TIME = #{sourceCloseTime}
|
||||||
|
</if>
|
||||||
|
<if test="executorId != null and executorId != ''">
|
||||||
|
and EXECUTOR_ID = #{executorId}
|
||||||
|
</if>
|
||||||
|
<if test="isDelete != null ">
|
||||||
|
and IS_DELETE = #{isDelete}
|
||||||
|
</if>
|
||||||
|
<if test="lineTitleLeft != null and lineTitleLeft != ''">
|
||||||
|
and LINE_TITLE_LEFT = #{lineTitleLeft}
|
||||||
|
</if>
|
||||||
|
<if test="lineTitleRight != null and lineTitleRight != ''">
|
||||||
|
and LINE_TITLE_RIGHT = #{lineTitleRight}
|
||||||
|
</if>
|
||||||
|
<if test="sysOrgCode != null and sysOrgCode != ''">
|
||||||
|
and SYS_ORG_CODE = #{sysOrgCode}
|
||||||
|
</if>
|
||||||
|
<if test="isCommon != null ">
|
||||||
|
and IS_COMMON = #{isCommon}
|
||||||
|
</if>
|
||||||
|
<if test="goodsTypeMajor != null and goodsTypeMajor != ''">
|
||||||
|
and GOODS_TYPE_MAJOR = #{goodsTypeMajor}
|
||||||
|
</if>
|
||||||
|
<if test="auditStatus != null ">
|
||||||
|
and AUDIT_STATUS = #{auditStatus}
|
||||||
|
</if>
|
||||||
|
<if test="waybillMode != null ">
|
||||||
|
and WAYBILL_MODE = #{waybillMode}
|
||||||
|
</if>
|
||||||
|
<if test="latestBiddingTime != null ">
|
||||||
|
and LATEST_BIDDING_TIME = #{latestBiddingTime}
|
||||||
|
</if>
|
||||||
|
<if test="deliveryFreight != null ">
|
||||||
|
and DELIVERY_FREIGHT = #{deliveryFreight}
|
||||||
|
</if>
|
||||||
|
<if test="collectedFreight != null ">
|
||||||
|
and COLLECTED_FREIGHT = #{collectedFreight}
|
||||||
|
</if>
|
||||||
|
<if test="uncollectedFreight != null ">
|
||||||
|
and UNCOLLECTED_FREIGHT = #{uncollectedFreight}
|
||||||
|
</if>
|
||||||
|
<if test="collectLessFreight != null ">
|
||||||
|
and COLLECT_LESS_FREIGHT = #{collectLessFreight}
|
||||||
|
</if>
|
||||||
|
<if test="auditBy != null and auditBy != ''">
|
||||||
|
and AUDIT_BY = #{auditBy}
|
||||||
|
</if>
|
||||||
|
<if test="auditTime != null ">
|
||||||
|
and AUDIT_TIME = #{auditTime}
|
||||||
|
</if>
|
||||||
|
<if test="businessType != null and businessType != ''">
|
||||||
|
and BUSINESS_TYPE = #{businessType}
|
||||||
|
</if>
|
||||||
|
<if test="transportationUnitPrice != null ">
|
||||||
|
and TRANSPORTATION_UNIT_PRICE = #{transportationUnitPrice}
|
||||||
|
</if>
|
||||||
|
<if test="radioValue != null ">
|
||||||
|
and RADIO_VALUE = #{radioValue}
|
||||||
|
</if>
|
||||||
|
<if test="createrName != null and createrName != ''">
|
||||||
|
and CREATER_NAME like concat('%', #{createrName}, '%')
|
||||||
|
</if>
|
||||||
|
<if test="createrPhone != null and createrPhone != ''">
|
||||||
|
and CREATER_PHONE = #{createrPhone}
|
||||||
|
</if>
|
||||||
|
<if test="isElectricFence != null ">
|
||||||
|
and IS_ELECTRIC_FENCE = #{isElectricFence}
|
||||||
|
</if>
|
||||||
|
<if test="wxaQrcode != null and wxaQrcode != ''">
|
||||||
|
and WXA_QRCODE = #{wxaQrcode}
|
||||||
|
</if>
|
||||||
|
<if test="appointShipperId != null and appointShipperId != ''">
|
||||||
|
and APPOINT_SHIPPER_ID = #{appointShipperId}
|
||||||
|
</if>
|
||||||
|
<if test="createUserId != null and createUserId != ''">
|
||||||
|
and CREATE_USER_ID = #{createUserId}
|
||||||
|
</if>
|
||||||
|
<if test="appointShipper != null and appointShipper != ''">
|
||||||
|
and APPOINT_SHIPPER = #{appointShipper}
|
||||||
|
</if>
|
||||||
|
<if test="isStatus != null ">
|
||||||
|
and IS_STATUS = #{isStatus}
|
||||||
|
</if>
|
||||||
|
<if test="signatureAddress != null and signatureAddress != ''">
|
||||||
|
and SIGNATURE_ADDRESS = #{signatureAddress}
|
||||||
|
</if>
|
||||||
|
<if test="qrCodeImgUrl != null and qrCodeImgUrl != ''">
|
||||||
|
and QR_CODE_IMG_URL = #{qrCodeImgUrl}
|
||||||
|
</if>
|
||||||
|
<if test="shippingNote != null and shippingNote != ''">
|
||||||
|
and SHIPPING_NOTE = #{shippingNote}
|
||||||
|
</if>
|
||||||
|
<if test="receivableType != null ">
|
||||||
|
and RECEIVABLE_TYPE = #{receivableType}
|
||||||
|
</if>
|
||||||
|
<if test="thirdPartyOrderNumber != null and thirdPartyOrderNumber != ''">
|
||||||
|
and THIRD_PARTY_ORDER_NUMBER = #{thirdPartyOrderNumber}
|
||||||
|
</if>
|
||||||
|
<if test="dispatchOrderNumber != null and dispatchOrderNumber != ''">
|
||||||
|
and DISPATCH_ORDER_NUMBER = #{dispatchOrderNumber}
|
||||||
|
</if>
|
||||||
|
<if test="appointDriverEnterpriseId != null and appointDriverEnterpriseId != ''">
|
||||||
|
and APPOINT_DRIVER_ENTERPRISE_ID = #{appointDriverEnterpriseId}
|
||||||
|
</if>
|
||||||
|
<if test="appointDriverEnterprise != null and appointDriverEnterprise != ''">
|
||||||
|
and APPOINT_DRIVER_ENTERPRISE = #{appointDriverEnterprise}
|
||||||
|
</if>
|
||||||
|
<if test="cancelOrderRemark != null and cancelOrderRemark != ''">
|
||||||
|
and CANCEL_ORDER_REMARK = #{cancelOrderRemark}
|
||||||
|
</if>
|
||||||
|
<if test="orderDriverId != null and orderDriverId != ''">
|
||||||
|
and ORDER_DRIVER_ID = #{orderDriverId}
|
||||||
|
</if>
|
||||||
|
<if test="goodsQuantity != null ">
|
||||||
|
and GOODS_QUANTITY = #{goodsQuantity}
|
||||||
|
</if>
|
||||||
|
<if test="goodsQuantityUnitId != null and goodsQuantityUnitId != ''">
|
||||||
|
and GOODS_QUANTITY_UNIT_ID = #{goodsQuantityUnitId}
|
||||||
|
</if>
|
||||||
|
<if test="goodsQuantityUnit != null and goodsQuantityUnit != ''">
|
||||||
|
and GOODS_QUANTITY_UNIT = #{goodsQuantityUnit}
|
||||||
|
</if>
|
||||||
|
<if test="biddingUnit != null and biddingUnit != ''">
|
||||||
|
and BIDDING_UNIT = #{biddingUnit}
|
||||||
|
</if>
|
||||||
|
<if test="orderStatus != null ">
|
||||||
|
and ORDER_STATUS = #{orderStatus}
|
||||||
|
</if>
|
||||||
|
<if test="splicingOrderType != null ">
|
||||||
|
and SPLICING_ORDER_TYPE = #{splicingOrderType}
|
||||||
|
</if>
|
||||||
|
<if test="splicingStatus != null ">
|
||||||
|
and SPLICING_STATUS = #{splicingStatus}
|
||||||
|
</if>
|
||||||
|
<if test="mainOrderId != null and mainOrderId != ''">
|
||||||
|
and MAIN_ORDER_ID = #{mainOrderId}
|
||||||
|
</if>
|
||||||
|
<if test="mainOrderNum != null and mainOrderNum != ''">
|
||||||
|
and MAIN_ORDER_NUM = #{mainOrderNum}
|
||||||
|
</if>
|
||||||
|
<if test="mergeOrderId != null and mergeOrderId != ''">
|
||||||
|
and MERGE_ORDER_ID = #{mergeOrderId}
|
||||||
|
</if>
|
||||||
|
<if test="mergeOrderNum != null and mergeOrderNum != ''">
|
||||||
|
and MERGE_ORDER_NUM = #{mergeOrderNum}
|
||||||
|
</if>
|
||||||
|
<if test="payerType != null ">
|
||||||
|
and PAYER_TYPE = #{payerType}
|
||||||
|
</if>
|
||||||
|
<if test="machineNumber != null and machineNumber != ''">
|
||||||
|
and MACHINE_NUMBER = #{machineNumber}
|
||||||
|
</if>
|
||||||
|
<if test="stockFlag != null ">
|
||||||
|
and STOCK_FLAG = #{stockFlag}
|
||||||
|
</if>
|
||||||
|
<if test="infoFee != null ">
|
||||||
|
and INFO_FEE = #{infoFee}
|
||||||
|
</if>
|
||||||
|
<if test="infoFeePayeeType != null ">
|
||||||
|
and INFO_FEE_PAYEE_TYPE = #{infoFeePayeeType}
|
||||||
|
</if>
|
||||||
|
<if test="infoFeePayee != null and infoFeePayee != ''">
|
||||||
|
and INFO_FEE_PAYEE = #{infoFeePayee}
|
||||||
|
</if>
|
||||||
|
<if test="infoFeeStatus != null ">
|
||||||
|
and INFO_FEE_STATUS = #{infoFeeStatus}
|
||||||
|
</if>
|
||||||
|
<if test="infoFeeDocumentNumber != null and infoFeeDocumentNumber != ''">
|
||||||
|
and INFO_FEE_DOCUMENT_NUMBER = #{infoFeeDocumentNumber}
|
||||||
|
</if>
|
||||||
|
<if test="orderShippingType != null ">
|
||||||
|
and ORDER_SHIPPING_TYPE = #{orderShippingType}
|
||||||
|
</if>
|
||||||
|
<if test="recipientId != null and recipientId != ''">
|
||||||
|
and RECIPIENT_ID = #{recipientId}
|
||||||
|
</if>
|
||||||
|
<if test="recipientName != null and recipientName != ''">
|
||||||
|
and RECIPIENT_NAME like concat('%', #{recipientName}, '%')
|
||||||
|
</if>
|
||||||
|
<if test="settlementStatus != null ">
|
||||||
|
and SETTLEMENT_STATUS = #{settlementStatus}
|
||||||
|
</if>
|
||||||
|
<if test="settlementTime != null ">
|
||||||
|
and SETTLEMENT_TIME = #{settlementTime}
|
||||||
|
</if>
|
||||||
|
<if test="paymentTime != null ">
|
||||||
|
and PAYMENT_TIME = #{paymentTime}
|
||||||
|
</if>
|
||||||
|
<if test="reconciliationInnerNumber != null and reconciliationInnerNumber != ''">
|
||||||
|
and RECONCILIATION_INNER_NUMBER = #{reconciliationInnerNumber}
|
||||||
|
</if>
|
||||||
|
<if test="receivePaymentNumber != null and receivePaymentNumber != ''">
|
||||||
|
and RECEIVE_PAYMENT_NUMBER = #{receivePaymentNumber}
|
||||||
|
</if>
|
||||||
|
<if test="invoiceId != null and invoiceId != ''">
|
||||||
|
and INVOICE_ID = #{invoiceId}
|
||||||
|
</if>
|
||||||
|
<if test="isInvoice != null ">
|
||||||
|
and IS_INVOICE = #{isInvoice}
|
||||||
|
</if>
|
||||||
|
<if test="vehicleTypeId != null and vehicleTypeId != ''">
|
||||||
|
and VEHICLE_TYPE_ID = #{vehicleTypeId}
|
||||||
|
</if>
|
||||||
|
<if test="vehicleTypeName != null and vehicleTypeName != ''">
|
||||||
|
and VEHICLE_TYPE_NAME like concat('%', #{vehicleTypeName}, '%')
|
||||||
|
</if>
|
||||||
|
<if test="carrier != null and carrier != ''">
|
||||||
|
and CARRIER = #{carrier}
|
||||||
|
</if>
|
||||||
|
<if test="carrierName != null and carrierName != ''">
|
||||||
|
and CARRIER_NAME like concat('%', #{carrierName}, '%')
|
||||||
|
</if>
|
||||||
|
<if test="szwlUserId != null ">
|
||||||
|
and SZWL_USER_ID = #{szwlUserId}
|
||||||
|
</if>
|
||||||
|
<if test="freightUnitPrice != null ">
|
||||||
|
and FREIGHT_UNIT_PRICE = #{freightUnitPrice}
|
||||||
|
</if>
|
||||||
|
<if test="biddingStatus != null ">
|
||||||
|
and BIDDING_STATUS = #{biddingStatus}
|
||||||
|
</if>
|
||||||
|
<if test="biddingRemarks != null and biddingRemarks != ''">
|
||||||
|
and BIDDING_REMARKS = #{biddingRemarks}
|
||||||
|
</if>
|
||||||
|
<if test="cargoInsuranceAmount != null ">
|
||||||
|
and CARGO_INSURANCE_AMOUNT = #{cargoInsuranceAmount}
|
||||||
|
</if>
|
||||||
|
<if test="destination != null and destination != ''">
|
||||||
|
and DESTINATION = #{destination}
|
||||||
|
</if>
|
||||||
|
<if test="freightCharges != null ">
|
||||||
|
and FREIGHT_CHARGES = #{freightCharges}
|
||||||
|
</if>
|
||||||
|
<if test="payer != null and payer != ''">
|
||||||
|
and PAYER = #{payer}
|
||||||
|
</if>
|
||||||
|
<if test="salesmanId != null and salesmanId != ''">
|
||||||
|
and SALESMAN_ID = #{salesmanId}
|
||||||
|
</if>
|
||||||
|
<if test="isDeclare != null ">
|
||||||
|
and IS_DECLARE = #{isDeclare}
|
||||||
|
</if>
|
||||||
|
<if test="route != null and route != ''">
|
||||||
|
and ROUTE = #{route}
|
||||||
|
</if>
|
||||||
|
<if test="containerType != null and containerType != ''">
|
||||||
|
and CONTAINER_TYPE = #{containerType}
|
||||||
|
</if>
|
||||||
|
<if test="containerTypeName != null and containerTypeName != ''">
|
||||||
|
and CONTAINER_TYPE_NAME like concat('%', #{containerTypeName}, '%')
|
||||||
|
</if>
|
||||||
|
<if test="cardType != null and cardType != ''">
|
||||||
|
and CARD_TYPE = #{cardType}
|
||||||
|
</if>
|
||||||
|
<if test="cardTypeName != null and cardTypeName != ''">
|
||||||
|
and CARD_TYPE_NAME like concat('%', #{cardTypeName}, '%')
|
||||||
|
</if>
|
||||||
|
<if test="externalContainerNo != null and externalContainerNo != ''">
|
||||||
|
and EXTERNAL_CONTAINER_NO = #{externalContainerNo}
|
||||||
|
</if>
|
||||||
|
<if test="transitPlace != null and transitPlace != ''">
|
||||||
|
and TRANSIT_PLACE = #{transitPlace}
|
||||||
|
</if>
|
||||||
|
<if test="shipper != null and shipper != ''">
|
||||||
|
and SHIPPER = #{shipper}
|
||||||
|
</if>
|
||||||
|
<if test="customsShipper != null and customsShipper != ''">
|
||||||
|
and CUSTOMS_SHIPPER = #{customsShipper}
|
||||||
|
</if>
|
||||||
|
<if test="customsShipperTel != null and customsShipperTel != ''">
|
||||||
|
and CUSTOMS_SHIPPER_TEL = #{customsShipperTel}
|
||||||
|
</if>
|
||||||
|
<if test="unloadingCompany != null and unloadingCompany != ''">
|
||||||
|
and UNLOADING_COMPANY = #{unloadingCompany}
|
||||||
|
</if>
|
||||||
|
<if test="contractNo != null and contractNo != ''">
|
||||||
|
and CONTRACT_NO = #{contractNo}
|
||||||
|
</if>
|
||||||
|
<if test="freightFee != null ">
|
||||||
|
and FREIGHT_FEE = #{freightFee}
|
||||||
|
</if>
|
||||||
|
<if test="unloadingFee != null ">
|
||||||
|
and UNLOADING_FEE = #{unloadingFee}
|
||||||
|
</if>
|
||||||
|
<if test="customsFee != null ">
|
||||||
|
and CUSTOMS_FEE = #{customsFee}
|
||||||
|
</if>
|
||||||
|
<if test="shortageFee != null ">
|
||||||
|
and SHORTAGE_FEE = #{shortageFee}
|
||||||
|
</if>
|
||||||
|
<if test="miscellaneousFee != null ">
|
||||||
|
and MISCELLANEOUS_FEE = #{miscellaneousFee}
|
||||||
|
</if>
|
||||||
|
<if test="otherFee != null ">
|
||||||
|
and OTHER_FEE = #{otherFee}
|
||||||
|
</if>
|
||||||
|
<if test="detentionFee != null ">
|
||||||
|
and DETENTION_FEE = #{detentionFee}
|
||||||
|
</if>
|
||||||
|
<if test="taxRate != null ">
|
||||||
|
and TAX_RATE = #{taxRate}
|
||||||
|
</if>
|
||||||
|
<if test="settlementCurrency != null and settlementCurrency != ''">
|
||||||
|
and SETTLEMENT_CURRENCY = #{settlementCurrency}
|
||||||
|
</if>
|
||||||
|
<if test="volume != null ">
|
||||||
|
and VOLUME = #{volume}
|
||||||
|
</if>
|
||||||
|
<if test="detailContent != null and detailContent != ''">
|
||||||
|
and DETAIL_CONTENT = #{detailContent}
|
||||||
|
</if>
|
||||||
|
<if test="customsRoute != null and customsRoute != ''">
|
||||||
|
and CUSTOMS_ROUTE = #{customsRoute}
|
||||||
|
</if>
|
||||||
|
<if test="customsPort != null and customsPort != ''">
|
||||||
|
and CUSTOMS_PORT = #{customsPort}
|
||||||
|
</if>
|
||||||
|
<if test="customsContact != null and customsContact != ''">
|
||||||
|
and CUSTOMS_CONTACT = #{customsContact}
|
||||||
|
</if>
|
||||||
|
<if test="customsContactPhone != null and customsContactPhone != ''">
|
||||||
|
and CUSTOMS_CONTACT_PHONE = #{customsContactPhone}
|
||||||
|
</if>
|
||||||
|
<if test="customsRemark != null and customsRemark != ''">
|
||||||
|
and CUSTOMS_REMARK = #{customsRemark}
|
||||||
|
</if>
|
||||||
|
<if test="orgId != null and orgId != ''">
|
||||||
|
and ORG_ID = #{orgId}
|
||||||
|
</if>
|
||||||
|
<if test="goodsCategory != null and goodsCategory != ''">
|
||||||
|
and GOODS_CATEGORY = #{goodsCategory}
|
||||||
|
</if>
|
||||||
|
<if test="makerCodeNc != null and makerCodeNc != ''">
|
||||||
|
and MAKER_CODE_NC = #{makerCodeNc}
|
||||||
|
</if>
|
||||||
|
<if test="salesmanCodeNc != null and salesmanCodeNc != ''">
|
||||||
|
and SALESMAN_CODE_NC = #{salesmanCodeNc}
|
||||||
|
</if>
|
||||||
|
<if test="customerCodeNc != null and customerCodeNc != ''">
|
||||||
|
and CUSTOMER_CODE_NC = #{customerCodeNc}
|
||||||
|
</if>
|
||||||
|
<if test="salesmanName != null and salesmanName != ''">
|
||||||
|
and SALESMAN_NAME like concat('%', #{salesmanName}, '%')
|
||||||
|
</if>
|
||||||
|
<if test="orgName != null and orgName != ''">
|
||||||
|
and ORG_NAME like concat('%', #{orgName}, '%')
|
||||||
|
</if>
|
||||||
|
<if test="organizationId != null ">
|
||||||
|
and ORGANIZATION_ID = #{organizationId}
|
||||||
|
</if>
|
||||||
|
<if test="organizationName != null and organizationName != ''">
|
||||||
|
and ORGANIZATION_NAME like concat('%', #{organizationName}, '%')
|
||||||
|
</if>
|
||||||
|
<if test="topOrganizationId != null ">
|
||||||
|
and TOP_ORGANIZATION_ID = #{topOrganizationId}
|
||||||
|
</if>
|
||||||
|
<if test="documentDate != null ">
|
||||||
|
and DOCUMENT_DATE = #{documentDate}
|
||||||
|
</if>
|
||||||
|
</where>
|
||||||
|
</sql>
|
||||||
|
|
||||||
|
<select id="queryList" parameterType="com.mhd.oms.domain.businessDocumentOrder.repository.todo.BusinessDocumentOrderDO" resultMap="BusinessDocumentOrderResult">
|
||||||
|
<include refid="selectBusinessDocumentOrderPo"/>
|
||||||
|
<include refid="selectBusinessDocumentOrderPo1"/>
|
||||||
|
</select>
|
||||||
|
</mapper>
|
||||||
@@ -0,0 +1,88 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" ?>
|
||||||
|
<!DOCTYPE mapper
|
||||||
|
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||||
|
<mapper namespace="com.mhd.oms.domain.executeOrder.repository.mapper.ExecuteOrderMapper">
|
||||||
|
|
||||||
|
<resultMap type="com.mhd.oms.domain.executeOrder.repository.po.ExecuteOrderPO" id="ExecuteOrderResult">
|
||||||
|
<result property="id" column="ID" />
|
||||||
|
<result property="realCreateBy" column="REAL_CREATE_BY" />
|
||||||
|
<result property="realCreateName" column="REAL_CREATE_NAME" />
|
||||||
|
<result property="createBy" column="CREATE_BY" />
|
||||||
|
<result property="createCompanyId" column="CREATE_COMPANY_ID" />
|
||||||
|
<result property="createTime" column="CREATE_TIME" />
|
||||||
|
<result property="updateBy" column="UPDATE_BY" />
|
||||||
|
<result property="updateTime" column="UPDATE_TIME" />
|
||||||
|
<result property="delFlag" column="DEL_FLAG" />
|
||||||
|
<result property="goodsNumber" column="GOODS_NUMBER" />
|
||||||
|
<result property="orgName" column="ORG_NAME" />
|
||||||
|
<result property="organizationId" column="ORGANIZATION_ID" />
|
||||||
|
<result property="businessDocumentId" column="BUSINESS_DOCUMENT_ID" />
|
||||||
|
<result property="businessDocumentNumber" column="BUSINESS_DOCUMENT_NUMBER" />
|
||||||
|
<result property="organizationName" column="ORGANIZATION_NAME" />
|
||||||
|
<result property="topOrganizationId" column="TOP_ORGANIZATION_ID" />
|
||||||
|
</resultMap>
|
||||||
|
|
||||||
|
|
||||||
|
<sql id="selectExecuteOrderPo">
|
||||||
|
select ID, REAL_CREATE_BY, REAL_CREATE_NAME, CREATE_BY, CREATE_COMPANY_ID, CREATE_TIME, UPDATE_BY, UPDATE_TIME, DEL_FLAG, GOODS_NUMBER, ORG_NAME, ORGANIZATION_ID, BUSINESS_DOCUMENT_ID, BUSINESS_DOCUMENT_NUMBER, ORGANIZATION_NAME, TOP_ORGANIZATION_ID from execute_order
|
||||||
|
</sql>
|
||||||
|
|
||||||
|
<sql id="selectExecuteOrderPo1">
|
||||||
|
<where>
|
||||||
|
<if test="id != null ">
|
||||||
|
and ID = #{id}
|
||||||
|
</if>
|
||||||
|
<if test="realCreateBy != null and realCreateBy != ''">
|
||||||
|
and REAL_CREATE_BY = #{realCreateBy}
|
||||||
|
</if>
|
||||||
|
<if test="realCreateName != null and realCreateName != ''">
|
||||||
|
and REAL_CREATE_NAME like concat('%', #{realCreateName}, '%')
|
||||||
|
</if>
|
||||||
|
<if test="createBy != null and createBy != ''">
|
||||||
|
and CREATE_BY = #{createBy}
|
||||||
|
</if>
|
||||||
|
<if test="createCompanyId != null and createCompanyId != ''">
|
||||||
|
and CREATE_COMPANY_ID = #{createCompanyId}
|
||||||
|
</if>
|
||||||
|
<if test="createTime != null ">
|
||||||
|
and CREATE_TIME = #{createTime}
|
||||||
|
</if>
|
||||||
|
<if test="updateBy != null and updateBy != ''">
|
||||||
|
and UPDATE_BY = #{updateBy}
|
||||||
|
</if>
|
||||||
|
<if test="updateTime != null ">
|
||||||
|
and UPDATE_TIME = #{updateTime}
|
||||||
|
</if>
|
||||||
|
<if test="delFlag != null ">
|
||||||
|
and DEL_FLAG = #{delFlag}
|
||||||
|
</if>
|
||||||
|
<if test="goodsNumber != null and goodsNumber != ''">
|
||||||
|
and GOODS_NUMBER = #{goodsNumber}
|
||||||
|
</if>
|
||||||
|
<if test="orgName != null and orgName != ''">
|
||||||
|
and ORG_NAME like concat('%', #{orgName}, '%')
|
||||||
|
</if>
|
||||||
|
<if test="organizationId != null ">
|
||||||
|
and ORGANIZATION_ID = #{organizationId}
|
||||||
|
</if>
|
||||||
|
<if test="businessDocumentId != null ">
|
||||||
|
and BUSINESS_DOCUMENT_ID = #{businessDocumentId}
|
||||||
|
</if>
|
||||||
|
<if test="businessDocumentNumber != null and businessDocumentNumber != ''">
|
||||||
|
and BUSINESS_DOCUMENT_NUMBER = #{businessDocumentNumber}
|
||||||
|
</if>
|
||||||
|
<if test="organizationName != null and organizationName != ''">
|
||||||
|
and ORGANIZATION_NAME like concat('%', #{organizationName}, '%')
|
||||||
|
</if>
|
||||||
|
<if test="topOrganizationId != null ">
|
||||||
|
and TOP_ORGANIZATION_ID = #{topOrganizationId}
|
||||||
|
</if>
|
||||||
|
</where>
|
||||||
|
</sql>
|
||||||
|
|
||||||
|
<select id="queryList" parameterType="com.mhd.oms.domain.executeOrder.repository.todo.ExecuteOrderDO" resultMap="ExecuteOrderResult">
|
||||||
|
<include refid="selectExecuteOrderPo"/>
|
||||||
|
<include refid="selectExecuteOrderPo1"/>
|
||||||
|
</select>
|
||||||
|
</mapper>
|
||||||
Reference in New Issue
Block a user