49 lines
1.4 KiB
C#
49 lines
1.4 KiB
C#
using WinformGeneralDeveloperFrame.Commons;
|
|
|
|
namespace MES.Entity
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Data.Entity.Spatial;
|
|
|
|
[Table("deliversaledetail")]
|
|
public partial class deliversaledetailInfo
|
|
{
|
|
///id
|
|
[ModelBindControl("txtid")]
|
|
public int id{set;get;}
|
|
///出货单
|
|
[ModelBindControl("txtdeliversaleid")]
|
|
public int deliversaleid{set;get;}
|
|
///销售单号
|
|
[ModelBindControl("txtsalecode")]
|
|
public string salecode{set;get;}
|
|
///产品名称
|
|
[ModelBindControl("txtproductname")]
|
|
public string productname{set;get;}
|
|
///产品编号
|
|
[ModelBindControl("txtproductcode")]
|
|
public string productcode{set;get;}
|
|
///规格型号
|
|
[ModelBindControl("txtproductspec")]
|
|
public string productspec{set;get;}
|
|
///仓库
|
|
[ModelBindControl("txtwarehouse")]
|
|
public int warehouse{set;get;}
|
|
///出货数量
|
|
[ModelBindControl("txtnumber")]
|
|
public decimal number{set;get;}
|
|
///计量单位
|
|
[ModelBindControl("txtunit")]
|
|
public int unit{set;get;}
|
|
///出库单号
|
|
[ModelBindControl("txtdeliversalecode")]
|
|
public string deliversalecode{set;get;}
|
|
///备注
|
|
[ModelBindControl("txtremark")]
|
|
public string remark{set;get;}
|
|
|
|
}
|
|
} |