123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Models
- {
- /// <summary>
- /// 等级信息类
- /// </summary>
- public class Level
- {
- int id;
- /// <summary>
- /// 主键
- /// </summary>
- public int Id
- {
- get { return id; }
- set { id = value; }
- }
- int lid;
- /// <summary>
- /// 等级id
- /// </summary>
- public int Lid
- {
- get { return lid; }
- set { lid = value; }
- }
- float profit;
- /// <summary>
- /// 利润
- /// </summary>
- public float Profit
- {
- get { return profit; }
- set { profit = value; }
- }
- float rebate;
- /// <summary>
- /// 返利
- /// </summary>
- public float Rebate
- {
- get { return rebate; }
- set { rebate = value; }
- }
- float tax;
- /// <summary>
- /// 税额
- /// </summary>
- public float Tax
- {
- get { return tax; }
- set { tax = value; }
- }
- int did;
- /// <summary>
- /// 部门id
- /// </summary>
- public int Did
- {
- get { return did; }
- set { did = value; }
- }
- int isDel;
- /// <summary>
- /// 删除状态
- /// </summary>
- public int IsDel
- {
- get { return isDel; }
- set { isDel = value; }
- }
- string lName;
- /// <summary>
- /// 等级名称
- /// </summary>
- public string LName
- {
- get { return lName; }
- set { lName = value; }
- }
- int cid;
- /// <summary>
- /// 航空公司id
- /// </summary>
- public int Cid
- {
- get { return cid; }
- set { cid = value; }
- }
- }
- }
|