1234567891011121314151617181920212223242526272829303132 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MeterVision.db
- {
- public class VCompDetail
- {
- // v_comp 的字段
- public string CompId { get; set; }
- public string CreateTime { get; set; }
- public string NPatchId { get; set; }
- public string OPatchId { get; set; }
- public string StandId { get; set; }
- // 与 n_patch_id 关联的 t_patch_detail 字段
- public TPatchDetail PatchDetail1 { get; set; }
- // 与 o_patch_id 关联的 t_patch_detail 字段
- public TPatchDetail PatchDetail2 { get; set; }
- public VCompDetail()
- {
- }
- //------------------------------------------------
- }
- }
|