2025-04-21 14:10:27 +08:00

40 lines
1.0 KiB
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.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Domain.Procs
{
/// <summary>
/// 存储过程-临时表转正式表
/// </summary>
public class ProcTemp2Official
{
/// <summary>
/// 业务ID单据号码
/// </summary>
public Guid Id { get; set; }
/// <summary>
/// 关键字段名。例如ID系统编号
/// </summary>
public string KeyField { get; set; }
/// <summary>
/// 是否删除原数据1:删除
/// </summary>
public int DeleteFlag { get; set; }
/// <summary>
/// 输出表,每个用","分隔。例如BusOrder0,BusOrderItem0
/// </summary>
public string OutTables { get; set; }
/// <summary>
/// 输入表,每个用","分隔。例如BusOrder,BusOrderItem
/// </summary>
public string InTables { get; set; }
}
}