using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Common { public class MeterWorkCalibrationVo { /// /// 校秤类型 /// public string calibration_type_no { get; set; } /// /// 校秤类型名称 /// public string calibration_type_name { get; set; } /// /// 校秤计量点 /// public string base_spot_no { get; set; } /// /// 校秤时间 /// public DateTime? calibration_main_time { get; set; } } }