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.
34 lines
1.2 KiB
34 lines
1.2 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace CK.SCP.Models.ScpEntity
|
|
{
|
|
public partial class TA_MOLDSHARING
|
|
{
|
|
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
[Key]
|
|
public long UID { get; set; }
|
|
[StringLength(50)]
|
|
public string VendId { get; set; }
|
|
[StringLength(50)]
|
|
public string PartCode { get; set; }
|
|
[StringLength(50)]
|
|
public string Site { get; set; }
|
|
public System.DateTime CreateTime { get; set; }
|
|
[StringLength(50)]
|
|
public string CreateUser { get; set; }
|
|
public Nullable<System.DateTime> UpdateTime { get; set; }
|
|
[StringLength(50)]
|
|
public string UpdateUser { get; set; }
|
|
public decimal? TotalCount { get; set; }//分摊总数(已分摊期初数+分摊数量)
|
|
public decimal? InitialQty { get; set; }//已分摊期初数
|
|
public decimal? Qty { get; set; }//分摊数量
|
|
public decimal? Count { get; set; }//累计分摊数量
|
|
// [Column(TypeName = "money")]
|
|
public decimal? Price { get; set; }
|
|
public bool IsDeleted { get; set; }
|
|
|
|
}
|
|
}
|
|
|