namespace BLUtil
|
|
{
|
|
public class BaseInforObj {
|
|
public long ID { get; set; }
|
|
public string Name { get; set; }
|
|
public string Code { get; set; }
|
|
public string Spell { get; set; }
|
|
public int RowVersion { get; set; }
|
|
public string Unit { get; set; }
|
|
}
|
|
}
|