binxie
2024-01-16 1b08402678deb31bba4a347bfd388eba8360cbc1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
public with sharing class SubmitAndRefreshController {
    @AuraEnabled
    public static InitData init(String recordId) {
        InitData res  = new initData();
 
        try {
            system.debug('id='+recordId);
            // WYL DB202311402675【客户】客户页面增加备品送货地址栏 新增ChangeReason__c start 
            Account_Delay_Apply__c report = [SELECT Id,Is_upload_file__c,HospitalName__c,Attribute_Type__c,ChangeReason__c FROM Account_Delay_Apply__c WHERE Id = :recordId];
            res.isuploadfile = report.Is_upload_file__c;
            res.hospitalName = report.HospitalName__c;
            res.attributeType = report.Attribute_Type__c;
res.ChangeReason = report.ChangeReason__c;
              // WYL DB202311402675【客户】客户页面增加备品送货地址栏 新增ChangeReason__c end
        } catch (Exception e) {
        }
        return res;
    }
    public class InitData{
        @AuraEnabled
        public Boolean isuploadfile;
        @AuraEnabled
        public String hospitalName;
        @AuraEnabled
        public String attributeType;
// WYL DB202311402675【客户】客户页面增加备品送货地址栏 start 
        @AuraEnabled
        public String ChangeReason;
        // WYL DB202311402675【客户】客户页面增加备品送货地址栏  end 
    }
 
        //add by allen 拆分部署ali生产
        public void testMock(){
            Integer i = 0;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
        }
}