|
|
/*
|
|
|
*代码由框架生成,任何更改都可能导致被代码生成器覆盖
|
|
|
*如果数据库字段发生变化,请在代码生器重新生成此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
|
|
|
{
|
|
|
public interface YARD_FEERATEINFO
|
|
|
{
|
|
|
string _CUSTOMERNAME();
|
|
|
string _BILLTYPE();
|
|
|
List<string> _WORKTYPE();
|
|
|
|
|
|
Guid headid();
|
|
|
|
|
|
decimal _BoxWeight();
|
|
|
}
|
|
|
|
|
|
[Entity(TableCnName = "客户费率",TableName = "OP_YARD_ZHENHUA_FEERATE")]
|
|
|
public class OP_YARD_ZHENHUA_FEERATE: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)]
|
|
|
[Required(AllowEmptyStrings=false)]
|
|
|
public string CUSTOMERNAME { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///业务类型
|
|
|
/// </summary>
|
|
|
[Display(Name ="业务类型")]
|
|
|
[MaxLength(50)]
|
|
|
[Column(TypeName="varchar(50)")]
|
|
|
[Editable(true)]
|
|
|
public string BILLTYPE { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///作业类型
|
|
|
/// </summary>
|
|
|
[Display(Name ="作业类型")]
|
|
|
[MaxLength(50)]
|
|
|
[Column(TypeName="varchar(50)")]
|
|
|
[Editable(true)]
|
|
|
public string WORKTYPE { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///费用类型
|
|
|
/// </summary>
|
|
|
[Display(Name ="费用类型")]
|
|
|
[Column(TypeName="int")]
|
|
|
[Editable(true)]
|
|
|
public int? FEETYPE { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///作业项
|
|
|
/// </summary>
|
|
|
[Display(Name ="作业项")]
|
|
|
[MaxLength(50)]
|
|
|
[Column(TypeName="varchar(50)")]
|
|
|
[Editable(true)]
|
|
|
public string WORKNAME { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///费用名称
|
|
|
/// </summary>
|
|
|
[Display(Name ="费用名称")]
|
|
|
[MaxLength(50)]
|
|
|
[Column(TypeName="varchar(50)")]
|
|
|
[Editable(true)]
|
|
|
public string FEENAME { 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; }
|
|
|
|
|
|
|
|
|
}
|
|
|
} |