315 lines
8.7 KiB
C#
315 lines
8.7 KiB
C#
|
|
using System;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using SqlSugar;
|
|||
|
|
|
|||
|
|
namespace MyCode.Project.Domain.Model
|
|||
|
|
{
|
|||
|
|
///<summary>
|
|||
|
|
///
|
|||
|
|
///</summary>
|
|||
|
|
[SugarTable("PushKingDeeGoodsDocIn")]
|
|||
|
|
public partial class PushKingDeeGoodsDocIn
|
|||
|
|
{
|
|||
|
|
public PushKingDeeGoodsDocIn(){
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:
|
|||
|
|
/// Default:newid()
|
|||
|
|
/// Nullable:False
|
|||
|
|
/// </summary>
|
|||
|
|
[SugarColumn(IsPrimaryKey=true)]
|
|||
|
|
public Guid ID {get;set;}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:出入库单号
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public string GoodsdocNo {get;set;}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:出入库日期
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public DateTime? InOutDate2 {get;set;}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:系统出入库日期
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public DateTime? GmtCreate2 {get;set;}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:入库类型
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public string InouttypeName {get;set;}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:仓库名称
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public string WarehouseName {get;set;}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:币种
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public string CurrencyCode {get;set;}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:币种名称
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public string CurrencyCodeName {get;set;}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:汇率
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public decimal? CurrencyRate {get;set;}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:操作人
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public string CreateUserName {get;set;}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:公司
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public string CompanyName {get;set;}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:往来单位
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public string VendCustomerName {get;set;}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:回传状态:0未回传;1回传失败;10不回传;11已回传
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public string CallbackStatus {get;set;}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:申请公司
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public string ApplyCompanyName {get;set;}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:申请部门
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public string ApplyDepartName {get;set;}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:申请人
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public string ApplyUserName {get;set;}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:渠道
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public string ChannelName {get;set;}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:货品编号
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public string GoodsNo {get;set;}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:货品名称
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public string GoodsName {get;set;}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:规格
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public string SkuName {get;set;}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:条码
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public string SkuBarcode {get;set;}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:单位
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public string UnitName {get;set;}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:数量
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public decimal? Quantity {get;set;}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:入库价
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public decimal? BaceCurrencyCostPrice {get;set;}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:入库金额
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public decimal? BaceCurrencyCostAmount {get;set;}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:本币无税单价
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public decimal? BaceCurrencyNoTaxPrice {get;set;}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:本币无税金额
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public decimal? BaceCurrencyNoTaxAmount {get;set;}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:本币含税单价
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public decimal? BaceCurrencyWithTaxPrice {get;set;}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:本币含税金额
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public decimal? BaceCurrencyWithTaxAmount {get;set;}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:baceCurrencyTaxAmount
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public decimal? BaceCurrencyTaxAmount {get;set;}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:税率
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public decimal? TaxRate {get;set;}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:原币无税单价
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public decimal? TransNoTaxPrice {get;set;}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:原币无税金额
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public decimal? TransNoTaxAmount {get;set;}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:原币含税单价
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public decimal? TransHasTaxPrice {get;set;}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:原币含税金额
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public decimal? TransHasTaxAmount {get;set;}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:原币税额
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public decimal? TransTaxAmount {get;set;}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:正次品 1-正品 0-次品
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public byte? IsCertified {get;set;}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:往来单位code
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public string VendCode {get;set;}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:仓库code
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public string WarehouseCode {get;set;}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:创建时间
|
|||
|
|
/// Default:DateTime.Now
|
|||
|
|
/// Nullable:False
|
|||
|
|
/// </summary>
|
|||
|
|
public DateTime CreateTime {get;set;}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:更新时间
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public DateTime? UpdateTime {get;set;}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:0=未处理 1=已合并 2=已推送
|
|||
|
|
/// Default:0
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public int? Status {get;set;}
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|