12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Models.Model
- {
- public class UserModel
- {
- //定位
- public string bdw_number { get; set; }
- //大底
- public string dadihao { get; set; }
- //杀码
- public string sh_number { get; set; }
- //胆码
- public string dm_number { get; set; }
- //二码和过滤
- public string emh { get; set; }
- public string emh_type { get; set; }
- //二码差过滤
- public string emc { get; set; }
- public string emc_type { get; set; }
- //二码过滤
- public string em { get; set; }
- public string em_type { get; set; }
- //012路过滤
- public string l012 { get; set; }
- public string l012_type { get; set; }
- //和值过滤
- public string hz { get; set; }
- public string hz_type { get; set; }
- //和尾过滤
- public string hw { get; set; }
- public string hw_type { get; set; }
- //跨度过滤
- public string kd { get; set; }
- public string kd_type { get; set; }
- //大小过滤
- public string dx { get; set; }
- public string dx_type { get; set; }
- //奇偶过滤
- public string jo { get; set; }
- public string jo_type { get; set; }
- //质合过滤
- public string zh { get; set; }
- public string zh_type { get; set; }
- //顺子过滤
- public string sz_type { get; set; }
-
- //直选类别
- public string z3 { get; set; }
- public string z6 { get; set; }
-
- }
- }
|