委托加工和来料加工feign接口字段映射
This commit is contained in:
@@ -342,4 +342,33 @@ public class OrdDtlDTO {
|
||||
*/
|
||||
@Schema(description = "来料加工原料详情")
|
||||
private String originDetail;
|
||||
//=====================================委托加工订单=======================================
|
||||
@Schema(description = "发货工厂名称", example = "张三")
|
||||
private String sendFactoryName;
|
||||
@Schema(description = "发货工厂编码")
|
||||
private String sendFactoryNumber;
|
||||
@Schema(description = "发货库位名称", example = "李四")
|
||||
private String sendWarehouseName;
|
||||
@Schema(description = "发货库位编码")
|
||||
private String sendWarehouseNumber;
|
||||
@Schema(description = "收货工厂名称", example = "赵六")
|
||||
private String receiveFactoryName;
|
||||
@Schema(description = "收货工厂编码")
|
||||
private String receiveFactoryNumber;
|
||||
@Schema(description = "收货库位名称", example = "张三")
|
||||
private String receiveWarehouseName;
|
||||
@Schema(description = "收货库位编码")
|
||||
private String receiveWarehouseNumber;
|
||||
@Schema(description = "发货物料名称", example = "张三")
|
||||
private String sendMaterialName;
|
||||
@Schema(description = "发货物料编码", example = "李四")
|
||||
private String sendMaterialNumber;
|
||||
@Schema(description = "收货物料名称", example = "王五")
|
||||
private String receiveMaterialName;
|
||||
@Schema(description = "收货物料编码", example = "王五")
|
||||
private String receiveMaterialNumber;
|
||||
@Schema(description = "发货计量单位")
|
||||
private String sendUnit;
|
||||
@Schema(description = "收货计量单位")
|
||||
private String receiveUnit;
|
||||
}
|
||||
|
||||
@@ -14,4 +14,5 @@ public interface ErrorCodeConstants {
|
||||
// ========== 合同模块 1-027-000-000 ==========
|
||||
ErrorCode ORIGINAL_MATERIAL_PROCESSING_DETAIL_NOT_EXISTS = new ErrorCode(1_027_130_000, "来料加工订单明细不存在");
|
||||
ErrorCode ORIGINAL_MATERIAL_PROCESSING_DO_NOT_EXISTS = new ErrorCode(1_027_130_001, "来料加工订单不存在");
|
||||
ErrorCode ORIGINAL_MATERIAL_PROCESSING_NOT_ALLOW_CALL_ERP = new ErrorCode(1_027_130_002, "当前订单类型为【{}】不允许调用该erp接口");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user