| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- const stationDetail = {
- gasstationId: '710272355377020928',
- introduce: '',
- fillingMachineNum: 0,
- cashierNum: 0,
- creater: null,
- createrName: null,
- createDate: null,
- updater: null,
- updaterName: null,
- updateDate: null,
- truckId: null,
- gasstationName: '诸城捷通物流有限公司',
- nickName: '通联测试加气站',
- address: '山东省潍坊市',
- listPrice: null,
- platformPrice: 52.79,
- actualPrice: 52.79,
- mobile: '19100000003',
- province: '',
- city: null,
- region: null,
- longitude: '',
- latitude: null,
- url: 'https://twx.auyen.com/image/M00/00/0C/rB86LmHqVrSAec0LAABrWnERfQ0711.jpg',
- orgPics: [
- { picPath: 'image/M00/00/0C/rB86LmHqVrSAec0LAABrWnERfQ0711.jpg' },
- { picPath: 'image/M00/00/0C/rB86LmHqVrSAec0LAABrWnERfQ0711.jpg' },
- ],
- gasstationTags: [],
- presentContent: null,
- presentContentId: null,
- gasType: 1001,
- }
- const truckInfo = {
- truckId: '800136756804452353',
- tradeType: 1,
- orgId: '720613316032479232',
- orgName: '东风物流二',
- truckName: '凯迪',
- carNumber: '宁BB0005',
- purchaseDate: '2021-01-14 00:00:00',
- color: '红',
- deadWeight: 3,
- capacity: 13,
- manufacturer: '红梅',
- status: 0,
- creater: '600127803374714880',
- createDate: '2021-01-12T09:02:43',
- updater: '600172040824832000',
- updateDate: '2024-08-19T11:09:35',
- driverList: [
- {
- orgId: '720613316032479232',
- userId: '600136758884843522',
- userCode: null,
- userName: '徐司机五 / 13300000005',
- password: 'eee4f7d036e7655076a0607b3ea18d20',
- mobile: '13300000005',
- idCardNo: '370213198709114017',
- openId: 'oR7EpvxchMcA-gXHyLWGlLpX6GdM',
- status: 0,
- userType: 2,
- baseRole: 'driver',
- creater: '600127803374714880',
- createDate: '2021-01-12T09:10:59',
- updater: '600172040824832000',
- updateDate: '2024-08-19T11:09:35',
- orgName: '东风物流二',
- createrName: '徐红梅长',
- updaterName: 'çä¼å®',
- flag: 0,
- carNumber: null,
- truckId: null,
- keyWord: null,
- lastLoginDate: '2024-09-24 16:29:06',
- },
- ],
- escortList: null,
- driversList: null,
- balance: 20,
- orgBalance: 0,
- frameNumber: null,
- trailerNumber: '宁BB0005',
- createrName: '徐红梅长',
- updaterName: '王伟宇',
- linked: 1,
- autoAccount: 1,
- typeName: null,
- owner: null,
- address: null,
- useNature: null,
- vehicleIdCode: 'WOSHICHEJIA000512',
- registerDate: null,
- issueDate: null,
- fileNo: null,
- energyType: null,
- faceUrl: null,
- backUrl: null,
- authStatus: null,
- authDate: null,
- level: 1,
- comStatus: 1,
- comContractStatus: 0,
- tmsStatus: 0,
- deptId: null,
- deptName: '',
- }
- /** 卡车信息 -- 推导 /strategy/truck/find 返回值 */
- type DerITruckInfo = typeof truckInfo
- const userinfo = {
- orgId: '720613316032479232',
- userId: '600136758884843522',
- userCode: null,
- userName: '徐司机五 / 13300000005',
- password: null,
- mobile: '13300000005',
- idCardNo: '370213198709114017',
- openId: 'oR7EpvxchMcA-gXHyLWGlLpX6GdM',
- headUrl:
- 'http://thirdwx.qlogo.cn/mmopen/S215micoQ1V3n8IMthF0f6gIdiblq4pFeOciaM6eRMfBbhDw0GuoFqBYESRgeQiayqlfYUtArtk9kibvaZDQnI44UWg3U0Vh7D7V2/132',
- status: 0,
- userType: 2,
- baseRole: 'driver',
- creater: '600127803374714880',
- createDate: '2021-01-12T09:10:59',
- updater: '600172040824832000',
- updateDate: '2024-08-19T11:09:35',
- orgName: '东风物流二',
- orgShortName: '东风物流东风物流东风物流有限公司',
- createrName: '徐红梅长',
- updaterName: 'çä¼å®',
- lastLoginDate: '2024-09-23 14:40:13',
- /** 实名认证 0:未认证 1:已认证 */
- authStatus: 0,
- ids: null,
- keyWord: null,
- loginType: 0,
- }
- /** 用户信息 -- 推导 /user/user/find 返回值.user */
- type DerIUserInfo = typeof userinfo
- /** 加气站详情 -- 推导 /user/gasstation_card/find 返回值 */
- type DerIStationDetail = typeof stationDetail
- type IAccountInfo = {
- /** 显示余额 */
- showBalance: string
- /** 单位 */
- unit?: string
- /** 显示详细 */
- showDet: boolean
- } & 司机账户余额信息
|