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.
24 lines
377 B
C#
24 lines
377 B
C#
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
|
|
{
|
|
|
|
public ChBankdata()
|
|
{
|
|
TableName = "ch_fee_bankdata";
|
|
}
|
|
|
|
}
|
|
|
|
|
|
}
|