using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace Entity.Sugar
{
///
///
///
[SugarTable("SETB_SAL_Payment")]
public partial class SETB_SAL_Payment : ModelContext
{
public SETB_SAL_Payment()
{
}
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey = true)]
public string PaymentID { get; set; }
public const string CN_PAYMENTID = "PaymentID";
///
/// Desc:
/// Default:
/// Nullable:False
///
public string BookingID { get; set; }
public const string CN_BOOKINGID = "BookingID";
///
/// Desc:
/// Default:
/// Nullable:True
///
public string PaymentNo { get; set; }
public const string CN_PAYMENTNO = "PaymentNo";
///
/// Desc:
/// Default:
/// Nullable:True
///
public string PaymentMethod { get; set; }
public const string CN_PAYMENTMETHOD = "PaymentMethod";
///
/// Desc:
/// Default:
/// Nullable:True
///
public string PaymentTerms { get; set; }
public const string CN_PAYMENTTERMS = "PaymentTerms";
///
/// Desc:
/// Default:
/// Nullable:True
///
public DateTime? DueDate { get; set; }
public const string CN_DUEDATE = "DueDate";
///
/// Desc:
/// Default:
/// Nullable:True
///
public DateTime? PaymentDate { get; set; }
public const string CN_PAYMENTDATE = "PaymentDate";
///
/// Desc:
/// Default:
/// Nullable:True
///
public string CurrencyID { get; set; }
public const string CN_CURRENCYID = "CurrencyID";
///
/// Desc:
/// Default:
/// Nullable:True
///
public string TaxID { get; set; }
public const string CN_TAXID = "TaxID";
///
/// Desc:
/// Default:
/// Nullable:True
///
public float Amount { get; set; }
public const string CN_AMOUNT = "Amount";
///
/// Desc:
/// Default:
/// Nullable:True
///
public string PaymentStatus { get; set; }
public const string CN_PAYMENTSTATUS = "PaymentStatus";
///
/// Desc:
/// Default:
/// Nullable:True
///
public string InvoiceID { get; set; }
public const string CN_INVOICEID = "InvoiceID";
///
/// Desc:
/// Default:
/// Nullable:True
///
public string Memo { get; set; }
public const string CN_MEMO = "Memo";
///
/// Desc:
/// Default:
/// Nullable:True
///
public string Effective { get; set; }
public const string CN_EFFECTIVE = "Effective";
///
/// Desc:
/// Default:
/// Nullable:True
///
public int? OrderByValue { get; set; }
public const string CN_ORDERBYVALUE = "OrderByValue";
///
/// Desc:
/// Default:N
/// Nullable:True
///
public string DelStatus { get; set; }
public const string CN_DELSTATUS = "DelStatus";
///
/// Desc:
/// Default:
/// Nullable:True
///
public string CreateUser { get; set; }
public const string CN_CREATEUSER = "CreateUser";
///
/// Desc:
/// Default:
/// Nullable:True
///
public DateTime? CreateDate { get; set; }
public const string CN_CREATEDATE = "CreateDate";
///
/// Desc:
/// Default:
/// Nullable:True
///
public string ModifyUser { get; set; }
public const string CN_MODIFYUSER = "ModifyUser";
///
/// Desc:
/// Default:
/// Nullable:True
///
public DateTime? ModifyDate { get; set; }
public const string CN_MODIFYDATE = "ModifyDate";
///
/// Desc:
/// Default:
/// Nullable:False
///
public string OrgID { get; set; }
public const string CN_ORGID = "OrgID";
///
/// Desc:
/// Default:
/// Nullable:False
///
public string Remittance { get; set; }
public const string CN_REMITTANCE = "Remittance";
}
}