You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.1 KiB
C#
53 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using VOL.Entity.SystemModels;
|
|
|
|
namespace VOL.Entity.DomainModels
|
|
{
|
|
public partial class VW_OP_YARD_CTNMNG_DUICHANG : BaseEntity, YARD_FEERATEINFO {
|
|
|
|
|
|
public string _CUSTOMERNAME()
|
|
{
|
|
return this.CUSTOMERNAME;
|
|
}
|
|
public string _BILLTYPE()
|
|
{
|
|
return "堆场预约";
|
|
}
|
|
|
|
public List<string> _WORKTYPE()
|
|
{
|
|
return worktypelist;
|
|
}
|
|
|
|
|
|
private List<string> worktypelist { get; set; }
|
|
public void setworktype(string worktype)
|
|
{
|
|
if (worktypelist == null || worktypelist.Count == 0)
|
|
{
|
|
worktypelist = new List<string>();
|
|
}
|
|
worktypelist.Add(worktype);
|
|
}
|
|
public List<string> getworktype() {
|
|
return worktypelist;
|
|
}
|
|
|
|
public Guid headid()
|
|
{
|
|
return GID;
|
|
}
|
|
|
|
public decimal _BoxWeight()
|
|
{
|
|
|
|
return BoxWeigth == null ? 0M : (decimal)BoxWeigth;
|
|
}
|
|
|
|
|
|
}
|
|
}
|