namespace wcftest.orm
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
public partial class TMS_BalanceList
|
{
|
public int? Balance_Id { get; set; }
|
|
[Key]
|
public int BalanceList_Id { get; set; }
|
|
public int? Receive_Id { get; set; }
|
|
[StringLength(50)]
|
public string ReceiveCode { get; set; }
|
|
[StringLength(50)]
|
public string CostName { get; set; }
|
|
public decimal? BaseReceiveTotal { get; set; }
|
|
[StringLength(50)]
|
public string BillCode { get; set; }
|
|
public string ExpandFields { get; set; }
|
}
|
}
|