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
588 B
28 lines
588 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ICSSoft.Entity.AssemVouch
|
|
{
|
|
public class AssemVouchs
|
|
{
|
|
|
|
public decimal iQuantity { get; set; }
|
|
|
|
public string cInvCodeBefore { get; set; }
|
|
|
|
public string cInvCodeAfter { get; set; }
|
|
|
|
public string cTVBatchBefore { get; set; }
|
|
|
|
public string cTVBatchAfter { get; set; }
|
|
|
|
public string cWhCode { get; set; }
|
|
|
|
public string bAVType { get; set; }
|
|
|
|
public decimal iNum { get; set; }
|
|
}
|
|
}
|