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.
63 lines
1.7 KiB
63 lines
1.7 KiB
4 years ago
|
using System;
|
||
|
using System.ComponentModel.DataAnnotations;
|
||
|
using System.ComponentModel.DataAnnotations.Schema;
|
||
|
|
||
|
namespace ChangKeTec.Wms.Models.Wms
|
||
|
{
|
||
|
public partial class TR_BALANCE_COMPARE_PART
|
||
|
{
|
||
|
[Key]
|
||
|
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
||
|
public long UID { get; set; }
|
||
|
|
||
|
[Required(AllowEmptyStrings = true)]
|
||
|
[StringLength(50)]
|
||
|
public string ReportId { get; set; }
|
||
|
|
||
|
[Required(AllowEmptyStrings = true)]
|
||
|
[StringLength(50)]
|
||
|
public string VinCode { get; set; }
|
||
|
|
||
|
[Required(AllowEmptyStrings = true)]
|
||
|
[StringLength(50)]
|
||
|
public string SubPartCode { get; set; }
|
||
|
|
||
|
[Required(AllowEmptyStrings = true)]
|
||
|
[StringLength(50)]
|
||
|
public string ProjectId { get; set; }
|
||
|
|
||
|
[Column(TypeName = "money")]
|
||
|
public decimal SendPrice { get; set; }
|
||
|
|
||
|
[Column(TypeName = "money")]
|
||
|
public decimal BalancePrice { get; set; }
|
||
|
|
||
|
[Column(TypeName = "money")]
|
||
|
public decimal DiffPrice { get; set; }
|
||
|
|
||
|
[Column(TypeName = "money")]
|
||
|
public decimal SendQty { get; set; }
|
||
|
|
||
|
[Column(TypeName = "money")]
|
||
|
public decimal BalanceQty { get; set; }
|
||
|
|
||
|
[Column(TypeName = "money")]
|
||
|
public decimal DiffQty { get; set; }
|
||
|
|
||
|
[Column(TypeName = "money")]
|
||
|
public decimal SendAmount { get; set; }
|
||
|
|
||
|
[Column(TypeName = "money")]
|
||
|
public decimal BalanceAmount { get; set; }
|
||
|
|
||
|
[Column(TypeName = "money")]
|
||
|
public decimal DiffAmount { get; set; }
|
||
|
|
||
|
[Column(TypeName = "date")]
|
||
|
public DateTime? SendDate { get; set; }
|
||
|
|
||
|
[Column(TypeName = "date")]
|
||
|
public DateTime? BalanceDate { get; set; }
|
||
|
}
|
||
|
}
|