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.
35 lines
1.2 KiB
C#
35 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace BookingJieFeng.DB.Model
|
|
{
|
|
[Table("t_ch_fee")]
|
|
public class t_ch_fee
|
|
{
|
|
[Key]
|
|
public int CH_ID { get; set; }
|
|
public string 类型 { get; set; }
|
|
public string 费用状态 { get; set; }
|
|
public string 编号 { get; set; }
|
|
public string 费用名称 { get; set; }
|
|
public string 结算单位 { get; set; }
|
|
public string 客户名称 { get; set; }
|
|
public string 标准 { get; set; }
|
|
public decimal? 单价 { get; set; }
|
|
public decimal? 数量 { get; set; }
|
|
public decimal? 金额 { get; set; }
|
|
public string 币别 { get; set; }
|
|
public decimal? 汇率 { get; set; }
|
|
public string 备注 { get; set; }
|
|
public decimal? 结算金额 { get; set; }
|
|
public decimal? 开票金额 { get; set; }
|
|
public decimal? 不含税价 { get; set; }
|
|
public decimal? 税率 { get; set; }
|
|
public decimal? 税额 { get; set; }
|
|
public string IS_CONFIRM { get; set; }
|
|
}
|
|
} |