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.
30 lines
911 B
30 lines
911 B
4 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using System.Threading.Tasks;
|
||
|
using System.ComponentModel.DataAnnotations;
|
||
|
using System.ComponentModel.DataAnnotations.Schema;
|
||
|
|
||
|
namespace CK.SCP.Models.ScpEntity
|
||
|
{
|
||
|
|
||
|
public partial class TB_PRICE
|
||
|
{
|
||
|
[Key]
|
||
|
public int UID { get; set; }
|
||
|
public string VendId { get; set; }
|
||
|
public string Site { get; set; }
|
||
|
public string PartCode { get; set; }
|
||
|
public Nullable<System.DateTime> StartTime { get; set; }
|
||
|
public Nullable<System.DateTime> EndTime { get; set; }
|
||
|
public string Curr { get; set; }
|
||
|
public string Unit { get; set; }
|
||
|
public decimal Amt { get; set; }
|
||
|
public string Remarks { get; set; }
|
||
|
public string Extend1 { get; set; }
|
||
|
public string Extend2 { get; set; }
|
||
|
public string Extend3 { get; set; }
|
||
|
}
|
||
|
}
|