Files
F8WebAI/backend/AgriculturalPlatform.Api/Models/PurchaseTransfer.cs
T

34 lines
999 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
namespace AgriculturalPlatform.Api.Models;
/// <summary>收购票据过户记录</summary>
public class PurchaseTransfer
{
public int Id { get; set; }
public int PurchaseOrderId { get; set; }
public PurchaseOrder? PurchaseOrder { get; set; }
/// <summary>过户单号(如 GH20260812-0001</summary>
public string TransferNo { get; set; } = string.Empty;
/// <summary>原农户(快照)</summary>
public string FromFarmer { get; set; } = string.Empty;
/// <summary>过户到农户(名称快照)</summary>
public string ToFarmer { get; set; } = string.Empty;
/// <summary>过户到农户身份证</summary>
public string ToIdCard { get; set; } = string.Empty;
/// <summary>过户原因</summary>
public string Reason { get; set; } = string.Empty;
/// <summary>经办人</summary>
public int? OperatorId { get; set; }
public User? Operator { get; set; }
public DateTime CreatedAt { get; set; } = DateTime.Now;
}