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