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.
61 lines
1.9 KiB
61 lines
1.9 KiB
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;
|
|
using ChangKeTec.Wms.Models;
|
|
|
|
|
|
namespace CK.SCP.Models.ScpEntity
|
|
{
|
|
public partial class V_TB_PRICE_DETAIL
|
|
{
|
|
[Key]
|
|
public int UID { get; set; }
|
|
public string VendId { get; set; }
|
|
public string Site { get; set; }
|
|
public string SubSite { 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; }
|
|
[DecimalPrecision(18, 5)]
|
|
public decimal Amt { get; set; }
|
|
public string Remarks { get; set; }
|
|
/// <summary>
|
|
/// 状态(已用)
|
|
/// </summary>
|
|
public string Extend1 { get; set; }
|
|
/// <summary>
|
|
/// 是否是临时价格(0:否 1:是)
|
|
/// </summary>
|
|
public string Extend2 { get; set; }
|
|
/// <summary>
|
|
/// 供应商名称
|
|
/// </summary>
|
|
public string Extend3 { get; set; }
|
|
[DecimalPrecision(18, 5)]
|
|
public decimal SharingPrice { get; set; }
|
|
public int TemporaryPrice { get; set; }
|
|
public string PartName { get; set; }
|
|
/// <summary>
|
|
/// 状态
|
|
/// </summary>
|
|
public int State { get; set; }
|
|
/// <summary>
|
|
/// 是否传接口 1是
|
|
/// </summary>
|
|
public int IsPost { get; set; }
|
|
public string Creator { get; set; }
|
|
[NotMapped]
|
|
public List<string> UserInAddress { set; get; }
|
|
|
|
[NotMapped]
|
|
public List<string> UserInVendIds { set; get; }
|
|
[NotMapped]
|
|
public List<string> UserInSubSite { set; get; }
|
|
}
|
|
}
|
|
|