using Business.Core.Attributes;
using Microsoft.EntityFrameworkCore;
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Business.Domain
{
///
/// 收货单子表
///
[Comment("收货单子表")]
public class scm_shdzb
{
///
/// 主键
///
[Comment("主键")]
[Key]
public long id { get; set; }
///
/// 物料编码
///
[Comment("物料编码")]
public string sh_material_code { get; set; }
///
/// 采购单号
///
[Comment("采购单号")]
public string po_bill { get; set; }
///
/// 采购单行号
///
[Comment("采购单行号")]
public string po_billline { get; set; }
///
/// 送货数量
///
[Comment("送货数量")]
public decimal sh_delivery_quantity { get; set; }
///
/// 交货单号
///
[Comment("交货单号")]
public string jhdbh { get; set; }
///
/// 交货单行号
///
[Comment("交货单行号")]
public string jhdhh { get; set; }
}
}