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.
|
|
|
|
/*
|
|
|
|
|
*代码由框架生成,任何更改都可能导致被代码生成器覆盖
|
|
|
|
|
*如果数据库字段发生变化,请在代码生器重新生成此Model
|
|
|
|
|
*/
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using VOL.Entity.SystemModels;
|
|
|
|
|
|
|
|
|
|
namespace VOL.Entity.DomainModels
|
|
|
|
|
{
|
|
|
|
|
[Entity(TableCnName = "提返箱运费设置",TableName = "OP_YARD_ZHENHUA_PORTFEERATE")]
|
|
|
|
|
public class OP_YARD_ZHENHUA_PORTFEERATE:BaseEntity
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
///
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Key]
|
|
|
|
|
[Display(Name ="GID")]
|
|
|
|
|
[Column(TypeName="uniqueidentifier")]
|
|
|
|
|
[Required(AllowEmptyStrings=false)]
|
|
|
|
|
public Guid GID { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
///费用对象
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Display(Name ="费用对象")]
|
|
|
|
|
[MaxLength(50)]
|
|
|
|
|
[Column(TypeName="varchar(50)")]
|
|
|
|
|
[Editable(true)]
|
|
|
|
|
public string CUSTOMERNAME { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
///收付方向
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Display(Name ="收付方向")]
|
|
|
|
|
[Column(TypeName="int")]
|
|
|
|
|
[Editable(true)]
|
|
|
|
|
[Required(AllowEmptyStrings=false)]
|
|
|
|
|
public int FEETYPE { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
///提返箱地点
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Display(Name ="提返箱地点")]
|
|
|
|
|
[MaxLength(50)]
|
|
|
|
|
[Column(TypeName="varchar(50)")]
|
|
|
|
|
[Editable(true)]
|
|
|
|
|
public string PORTNAME { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
///计费单位
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Display(Name ="计费单位")]
|
|
|
|
|
[MaxLength(50)]
|
|
|
|
|
[Column(TypeName="varchar(50)")]
|
|
|
|
|
[Editable(true)]
|
|
|
|
|
public string DEFAULTUNIT { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
///单价
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Display(Name ="单价")]
|
|
|
|
|
[Column(TypeName="numeric")]
|
|
|
|
|
[Editable(true)]
|
|
|
|
|
public decimal? PRICE { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|