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.
DS7/DSWeb/Areas/Account/Models/Chfee_bankdata/Chfee_Bankdata.cs

81 lines
2.4 KiB
C#

11 months ago
using System;
using System.Data;
using System.Collections;
using System.Collections.Generic;
using HcUtility.Core;
using Newtonsoft.Json;
namespace DSWeb.Areas.Account.Models.Chfee_Bankdata
{
[JsonObject]
public class ChBankdata : ModelObjectBillHead
{
[ModelDB(MDBType = ModelDBOprationType.All, IsPrimary = true)]
public string GID { get; set; }
[ModelDB]
public Int32 PCNO { get; set; }
[ModelDB]
public Int32 SFNO { get; set; }
[ModelDB]
public string TRANSTYPE { get; set; }
[ModelDB]
public string DRAWEE_BANK { get; set; }
[ModelDB]
public string DRAWEE_ACCOUNT { get; set; }
[ModelDB]
public string DRAWEE_NAME { get; set; }
[ModelDB]
public string PAYEE_BANK { get; set; }
[ModelDB]
public string PAYEE_ACCOUNT { get; set; }
[ModelDB]
public string PAYEE_NAME { get; set; }
[ModelDB]
public string TRANSDATE { get; set; }
[ModelDB]
public string CURRENCY { get; set; }
[ModelDB]
public decimal AMOUNT { get; set; }
[ModelDB]
public string TRANSNO { get; set; }
[ModelDB]
public string IMPORTDATE { get; set; }
[ModelDB]
public string IMPORTER { get; set; }
public bool ISFIT { get; set; }
public int FITCOUNT { get; set; }
public string INVNO { get; set; }
public string FITDATE { get; set; }
public string FITTYPE { get; set; }
public string PRINTDATE { get; set; }
public bool ISPRINT { get; set; }
public string PRINTER { get; set; }
public string SALE { get; set; }
[ModelDB]
public string ATTITIONAL { get; set; }
[ModelDB]
public string REMARK { get; set; }
[ModelDB]
public string SUMMARY { get; set; }
public string FITUSER { get; set; }
[ModelDB(MDBType = ModelDBOprationType.Insert)]
public string CREATEUSER { get; set; }
public string CREATEUSERREF { get; set; }
[ModelDB(MDBType = ModelDBOprationType.Insert)]
public string CREATETIME { get; set; }
[ModelDB(MDBType = ModelDBOprationType.Insert)]
public string CORPID { get; set; }
public ChBankdata()
{
TableName = "ch_fee_bankdata";
}
}
}