25 lines
643 B
C#
25 lines
643 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace dccdc.Models
|
|
{
|
|
public class ckdModel
|
|
{
|
|
public int id { get; set; }
|
|
public string ckdh { get; set; }
|
|
public DateTime cksj { get; set; }
|
|
public int ckrid { get; set; }
|
|
public string ckr { get; set; }
|
|
public int ksid { get; set; }
|
|
public string ksmc { get; set; }
|
|
public decimal ckje { get; set; }
|
|
public string lyr { get; set; }
|
|
|
|
//查询统计使用(明细表字段)
|
|
public string wzmc { get; set; }
|
|
public decimal sl { get; set; }
|
|
}
|
|
}
|