22 lines
531 B
C#
22 lines
531 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace dccdc.Models
|
|
{
|
|
public class xmjfsysqmxModel
|
|
{
|
|
public int id { get; set; }
|
|
public int sqdid { get; set; }
|
|
public int jfid { get; set; }
|
|
public string jfmc { get; set; }
|
|
public decimal sl { get; set; }
|
|
public decimal dj { get; set; }
|
|
public DateTime czsj { get; set; }
|
|
public byte zt { get; set; }
|
|
|
|
public decimal hj { get { return sl * dj; } }
|
|
}
|
|
}
|