20 lines
490 B
C#
20 lines
490 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace dccdc.Models
|
|
{
|
|
public class cgsqdmxModel
|
|
{
|
|
public int id { get; set; }
|
|
public int sqdid { get; set; }
|
|
public int wzid { get; set; }
|
|
public string wzmc { get; set; }
|
|
public decimal sl { get; set; }
|
|
public decimal dj { get; set; }
|
|
public DateTime czsj { get; set; }
|
|
public decimal hj { get { return sl * dj; } }
|
|
}
|
|
}
|