/*********************************************************************** * Project: baifenBinfa * ProjectName: 百分兵法管理系统 * Web: http://chuanyin.com * Author: * Email: * CreateTime: 202403/02 * Description: 暂无 ***********************************************************************/ namespace CoreCms.Net.Model.FromBody { public class FMStoreClerkCURDPost { public int id { get; set; } = 0; public int storeId { get; set; } public string phone { get; set; } } /// /// 根据int类型id加where查询条件和order排序获取列表(一般用于直接id分页) /// public class FMGetStoreQueryPageByCoordinate { public decimal longitude { get; set; } = 0; public decimal latitude { get; set; } = 0; public string key { get; set; } /// /// 当前页码 /// public int page { get; set; } = 1; /// /// 每页数据量 /// public int limit { get; set; } = 10; } }