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.
23 lines
749 B
23 lines
749 B
4 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.ComponentModel.DataAnnotations.Schema;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using System.Threading.Tasks;
|
||
|
|
||
|
namespace CK.SCP.Models.ScpEntity
|
||
|
{
|
||
|
public class V_FORECAST_REPORT
|
||
|
{
|
||
|
public string VendId { get; set; } //供应商编号
|
||
|
public string PartCode { get; set; } //零件号
|
||
|
public decimal AskQty { get; set; } //订单要货数量
|
||
|
public int Month { get; set; } //月份
|
||
|
public decimal MonthQty1 { get; set; } //N+1
|
||
|
public decimal MonthQty2 { get; set; } //N+2
|
||
|
public decimal MonthQty3 { get; set; } //N+3
|
||
|
[NotMapped]
|
||
|
public string VendName => ScpCache.GetVendName(VendId);//供应商名称
|
||
|
}
|
||
|
}
|