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.
26 lines
783 B
C#
26 lines
783 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace DSWeb.Common.DB
|
|
{
|
|
[Table("Cust_Price")]
|
|
public class CustPrice
|
|
{
|
|
[Key]
|
|
public string GID { get; set; }
|
|
public int? BSTYPE { get; set; }
|
|
public int? SENDTYPE { get; set; }
|
|
public string COMNAME { get; set; }
|
|
public string COMID { get; set; }
|
|
public decimal? PRICE { get; set; }
|
|
public decimal? GiftBalance { get; set; }
|
|
public DateTime? UPDATETIME { get; set; }
|
|
public decimal PRICEF { get; set; }
|
|
public decimal PRICEQG { get; set; }
|
|
public decimal PRICEFQG { get; set; }
|
|
}
|
|
} |