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.
28 lines
633 B
28 lines
633 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace ICSSoft.Entity
|
|
{
|
|
//库存信息
|
|
public class Stock
|
|
{
|
|
public string ckbm;
|
|
public string ck;
|
|
public string scode;
|
|
public string chmc;
|
|
public string ycxh;
|
|
public string hpms;
|
|
public decimal kysl;
|
|
public decimal xcsl;
|
|
public string pp;
|
|
public DateTime u9edit;
|
|
}
|
|
public class StockModel
|
|
{
|
|
public string WorkPoint;//编码
|
|
public DateTime StartTime;//开始时间
|
|
public DateTime EndTime;//结束时间
|
|
}
|
|
}
|