This commit is contained in:
2025-04-25 18:42:29 +08:00
parent 9340f5253e
commit 785450fc7c
12 changed files with 351 additions and 45 deletions

View File

@@ -51,6 +51,20 @@ namespace MyCode.Project.Domain.Message.Act.PurchaseOrder
public string FSupplierLot { get; set; }
}
public class TiaoMaAct
{
/// <summary>
/// 明细主键ID
/// </summary>
public Guid Id { get; set; }
/// <summary>
/// 每包数量
/// </summary>
public decimal CuseQty { get; set; }
}
public class PushReceiveAct
{
/// <summary>

View File

@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Domain.Message.Response.InvoiceOrder
{
public class TiaoMaResp
{
/// <summary>
/// 明细主键ID
/// </summary>
public Guid Id { get; set; }
/// <summary>
/// 对应的条码数组
/// </summary>
public List<string> BarCodeList { get; set; }
}
}

View File

@@ -0,0 +1,139 @@
using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace MyCode.Project.Domain.Model
{
///<summary>
///
///</summary>
[SugarTable("TiaoMa")]
public partial class TiaoMa
{
public TiaoMa(){
}
/// <summary>
/// Desc:
/// Default:
/// Nullable:False
/// </summary>
[SugarColumn(IsPrimaryKey=true)]
public Guid Id {get;set;}
/// <summary>
/// Desc:金蝶的收料通知单ID
/// Default:
/// Nullable:True
/// </summary>
public int? Fid {get;set;}
/// <summary>
/// Desc:物料编码
/// Default:
/// Nullable:True
/// </summary>
public string MaterialCode {get;set;}
/// <summary>
/// Desc:物料名称
/// Default:
/// Nullable:True
/// </summary>
public string MaterialName {get;set;}
/// <summary>
/// Desc:规格型号
/// Default:
/// Nullable:True
/// </summary>
public string SpecificationModel {get;set;}
/// <summary>
/// Desc:发货数量
/// Default:
/// Nullable:True
/// </summary>
public decimal? Qty {get;set;}
/// <summary>
/// Desc:单价
/// Default:
/// Nullable:True
/// </summary>
public decimal? UnitPrice {get;set;}
/// <summary>
/// Desc:排序字段
/// Default:
/// Nullable:True
/// </summary>
public int? SortNum {get;set;}
/// <summary>
/// Desc:采购明细单主键ID
/// Default:
/// Nullable:True
/// </summary>
public Guid? PurchaseOrderItemId {get;set;}
/// <summary>
/// Desc:采购明细单主键ID
/// Default:
/// Nullable:True
/// </summary>
public Guid? InvoceOrderItemId {get;set;}
/// <summary>
/// Desc:条码
/// Default:
/// Nullable:True
/// </summary>
public string FBarCode {get;set;}
/// <summary>
/// Desc:供应商批号
/// Default:
/// Nullable:True
/// </summary>
public string FSupplierLot {get;set;}
/// <summary>
/// Desc:美塞斯批号
/// Default:
/// Nullable:True
/// </summary>
public string MSSSupplierLot {get;set;}
/// <summary>
/// Desc:金蝶的采购明细主键ID
/// Default:
/// Nullable:True
/// </summary>
public int? PurchaseEntityId {get;set;}
/// <summary>
/// Desc:发货日期
/// Default:
/// Nullable:True
/// </summary>
public DateTime? DeliveryDate {get;set;}
/// <summary>
/// Desc:金蝶的采购订单号,PO 号
/// Default:
/// Nullable:True
/// </summary>
public string PurchaseBillNo {get;set;}
/// <summary>
/// Desc:金蝶的收料订单号
/// Default:
/// Nullable:True
/// </summary>
public string FBillNo {get;set;}
}
}

View File

@@ -141,6 +141,7 @@
<Compile Include="Message\Response\EnterpriseWechat\UserIdChangeOpenIdResp.cs" />
<Compile Include="Message\Response\EnterpriseWechat\WechatSysParameter.cs" />
<Compile Include="Message\Response\InvoiceOrder\InvoiceOrderPageList.cs" />
<Compile Include="Message\Response\InvoiceOrder\TiaoMaResp.cs" />
<Compile Include="Message\Response\PurchaseOrder\KingDeePurchaseOrderRespon.cs" />
<Compile Include="Message\Response\PurchaseOrder\PurchaseOrderPageList.cs" />
<Compile Include="Message\Response\User\AccountPageList.cs" />
@@ -155,6 +156,7 @@
<Compile Include="Model\SysGlobalConfig.cs" />
<Compile Include="Model\SysLogin.cs" />
<Compile Include="Model\SysWorkProcessV2.cs" />
<Compile Include="Model\TiaoMa.cs" />
<Compile Include="Procs\ProcTemp2Official.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Repositories\IInvoiceOrderItemRepository.cs" />
@@ -165,6 +167,7 @@
<Compile Include="Repositories\ISysGlobalConfigRepository.cs" />
<Compile Include="Repositories\ISysLoginRepository.cs" />
<Compile Include="Repositories\ISysWorkProcessV2Repository.cs" />
<Compile Include="Repositories\ITiaoMaRepository.cs" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />

View File

@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using MyCode.Project.Infrastructure;
using MyCode.Project.Domain;
using MyCode.Project.Domain.Model;
using MyCode.Project.Infrastructure.Common;
using MyCode.Project.Domain.Message;
namespace MyCode.Project.Domain.Repositories
{
public interface ITiaoMaRepository : IRepository<TiaoMa>
{
}
}