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.

22 lines
587 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_CZ")]
public class CustCZ
{
[Key]
public string GID { get; set; }
public string CZCOM { get; set; }
public string COMID { get; set; }
public decimal? CZJE { get; set; }
public decimal? CZYE { get; set; }
public DateTime? CZTIME { get; set; }
public string FPPath { get; set; }
}
}