You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
875 B

2 years ago
using System.ComponentModel.DataAnnotations;
using Volo.Abp.Domain.Entities;
namespace Win_in.Sfs.Wms.DataExchange.Domain.Fawtyg.Tyrp;
public class Scontrol : Entity
{
/// <summary>
/// 采购单号
/// </summary>
[Key]
public string scontrol_nbr { get; set; }
/// <summary>
/// 写入时间
/// </summary>
public string scontrol_dt_w { get; set; }
/// <summary>
/// 有效码
/// </summary>
public string scontrol_stat { get; set; }
/// <summary>
///
/// </summary>
public string scontrol_dt_k { get; set; }
/// <summary>
/// 单据类型
/// </summary>
public string scontrol_type { get; set; }
/// <summary>
///
/// </summary>
2 years ago
public decimal scontrol_id { get; set; }
2 years ago
public override object[] GetKeys()
{
return new object[] { scontrol_nbr };
}
}