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.
 
 
 
 
 

37 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 V_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 VendName { get; set; }
[StringLength(50)]
public string PartName { 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? Qty { get; set; }
public decimal? Count { get; set; }
[Column(TypeName = "money")]
public decimal? Price { get; set; }
[Column(TypeName = "money")]
public decimal? TotalPrice { get; set; }
public bool IsDeleted { get; set; }
}
}