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.
32 lines
899 B
32 lines
899 B
1 year 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_Pie_Chart
|
||
|
{
|
||
|
public string ShipTime { get; set; }
|
||
|
|
||
|
public string RecTime { get; set; }
|
||
|
public decimal Qty { get; set; }
|
||
|
public int flag { get; set; }
|
||
|
public List<string> UserInVendIds { set; get; }
|
||
|
public List<string> UserInAddress { set; get; }
|
||
|
public string Site { get; set; }
|
||
|
public string VendId { get; set; }
|
||
|
public string VendName { get; set; }
|
||
|
public string ProjectId { get; set; }
|
||
|
public string ShipUser { get; set; }
|
||
|
public string ReceiveUser { get; set; }
|
||
|
public DateTime BeginTime { get; set; }
|
||
|
|
||
|
public DateTime EndTime { get; set; }
|
||
|
|
||
|
}
|
||
|
}
|